about summary refs log tree commit diff
path: root/pkgs/tools/misc/mtm
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2019-10-12 04:20:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2019-10-12 04:20:00 -0500
commitca4fb734c6b5fb707810a80aa416f3a3054b78e2 (patch)
tree2c6cd4e62348da5d606a1356bbb011714d583bac /pkgs/tools/misc/mtm
parenta8b2e302c66f6e1c2186508aef58526976804ed3 (diff)
mtm: 1.1.0 -> 1.2.0
Changelog: https://github.com/deadpixi/mtm/releases/tag/1.2.0
Diffstat (limited to 'pkgs/tools/misc/mtm')
-rw-r--r--pkgs/tools/misc/mtm/default.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/tools/misc/mtm/default.nix b/pkgs/tools/misc/mtm/default.nix
index b518a159e9135..5b45c0b712bfe 100644
--- a/pkgs/tools/misc/mtm/default.nix
+++ b/pkgs/tools/misc/mtm/default.nix
@@ -2,17 +2,21 @@
 
 stdenv.mkDerivation rec {
   pname = "mtm";
-  version = "1.1.0";
+  version = "1.2.0";
 
   src = fetchFromGitHub {
     owner = "deadpixi";
     repo = pname;
     rev = version;
-    sha256 = "0k9xachd9wnyhj8sh4yninckgwm3a7zdxnn490x65ikn4vqb7w8x";
+    sha256 = "0b2arkmbmabxmrqxlpvvvhll2qx0xgj7r4r6p0ymnm9p70idris4";
   };
 
   buildInputs = [ ncurses ];
 
+  preBuild = ''
+    substituteInPlace Makefile --replace "strip -s mtm" ""
+  '';
+
   installPhase = ''
     runHook preInstall