summary refs log tree commit diff
path: root/pkgs/tools/system
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-07-06 02:15:45 +0200
committerGitHub <noreply@github.com>2021-07-06 02:15:45 +0200
commitc446c9abde3eb9e00695be6fb826a176b1c5d3f8 (patch)
tree157e2defc80c2316bfe8cac535cb9f15b83d1154 /pkgs/tools/system
parentf14b4dfda1122457e169a6483140982f5f7a9f8e (diff)
parent42ab2920f1bbbad7c7a641789e441c58791ab68e (diff)
downloadnixpkgs-c446c9abde3eb9e00695be6fb826a176b1c5d3f8.tar
nixpkgs-c446c9abde3eb9e00695be6fb826a176b1c5d3f8.tar.gz
nixpkgs-c446c9abde3eb9e00695be6fb826a176b1c5d3f8.tar.bz2
nixpkgs-c446c9abde3eb9e00695be6fb826a176b1c5d3f8.tar.lz
nixpkgs-c446c9abde3eb9e00695be6fb826a176b1c5d3f8.tar.xz
nixpkgs-c446c9abde3eb9e00695be6fb826a176b1c5d3f8.tar.zst
nixpkgs-c446c9abde3eb9e00695be6fb826a176b1c5d3f8.zip
Merge pull request #129308 from fabaff/bump-tm
tm: cleanup
Diffstat (limited to 'pkgs/tools/system')
-rw-r--r--pkgs/tools/system/tm/default.nix28
1 files changed, 15 insertions, 13 deletions
diff --git a/pkgs/tools/system/tm/default.nix b/pkgs/tools/system/tm/default.nix
index aa946c72ffc..19ade9b929c 100644
--- a/pkgs/tools/system/tm/default.nix
+++ b/pkgs/tools/system/tm/default.nix
@@ -1,26 +1,28 @@
-{lib, stdenv, fetchurl}:
+{ lib
+, stdenv
+, fetchurl
+}:
 
-stdenv.mkDerivation {
+stdenv.mkDerivation rec {
+  pname = "tm";
+  version = "0.4.1";
 
-  name = "tm-0.4.1";
+  src = fetchurl {
+    url = "https://vicerveza.homeunix.net/~viric/soft/tm/tm-${version}.tar.gz";
+    sha256 = "3b389bc03b6964ad5ffa57a344b891fdbcf7c9b2604adda723a863f83657c4a0";
+  };
 
-  installPhase=''make install "PREFIX=$out"'';
+  makeFlags = [ "PREFIX=$(out)" ];
 
-  patchPhase = ''
+  postPatch = ''
     sed -i 's@/usr/bin/install@install@g ; s/gcc/cc/g' Makefile
   '';
 
-  src = fetchurl {
-    url = "http://vicerveza.homeunix.net/~viric/soft/tm/tm-0.4.1.tar.gz";
-    sha256 = "3b389bc03b6964ad5ffa57a344b891fdbcf7c9b2604adda723a863f83657c4a0";
-  };
-
   meta = with lib; {
-    homepage = "http://vicerveza.homeunix.net/~viric/soft/tm";
     description = "Terminal mixer - multiplexer for the i/o of terminal applications";
-    license = licenses.gpl2;
+    homepage = "http://vicerveza.homeunix.net/~viric/soft/tm";
+    license = licenses.gpl2Plus;
     maintainers = with maintainers; [ viric ];
     platforms = platforms.all;
   };
-
 }