about summary refs log tree commit diff
path: root/pkgs/tools/misc/sl
diff options
context:
space:
mode:
authoreyjhbb@gmail.com <eyjhbb@gmail.com>2019-03-19 21:06:08 +0100
committereyjhbb@gmail.com <eyjhbb@gmail.com>2019-03-19 21:06:08 +0100
commita8654f8858a621e69ad6a579175e69f478a07bcf (patch)
tree6e6a825a2c12c84d236da1df4f474e914aa0ede8 /pkgs/tools/misc/sl
parent373488e6f4c3dc3bb51cabcb959e4a70eb5d7b2c (diff)
sl: 5.02 -> 5.04
Diffstat (limited to 'pkgs/tools/misc/sl')
-rw-r--r--pkgs/tools/misc/sl/default.nix17
1 files changed, 9 insertions, 8 deletions
diff --git a/pkgs/tools/misc/sl/default.nix b/pkgs/tools/misc/sl/default.nix
index 7a5ceb204496b..4299073d96ba2 100644
--- a/pkgs/tools/misc/sl/default.nix
+++ b/pkgs/tools/misc/sl/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   name = "sl-${version}";
-  version = "5.02";
+  version = "5.04";
 
   src = fetchFromGitHub {
-    owner = "mtoyoda";
+    owner = "eyJhb";
     repo = "sl";
-    rev = version;
-    sha256 = "1zrfd71zx2px2xpapg45s8xvi81xii63yl0h60q72j71zh4sif8b";
+    rev = "${version}";
+    sha256 = "029lv6vw39c7gj8bkfyqs8q4g32174vbmghhhgfk8wrhnxq60qn7";
   };
 
   buildInputs = [ ncurses ];
@@ -18,17 +18,18 @@ stdenv.mkDerivation rec {
   installPhase = ''
     mkdir -p $out/bin $out/share/man/man1
     cp sl $out/bin
-    cp sl.1 $out/share/man/man1
+    cp sl.1 $outputMan
   '';
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = http://www.tkl.iis.u-tokyo.ac.jp/~toyoda/index_e.html;
     license = rec {
       shortName = "Toyoda Masashi's free software license";
       fullName = shortName;
-      url = https://github.com/mtoyoda/sl/blob/master/LICENSE;
+      url = https://github.com/eyJhb/sl/blob/master/LICENSE;
     };
+    maintainers = [ maintainers.eyjhb ];
     description = "Steam Locomotive runs across your terminal when you type 'sl'";
-    platforms = with stdenv.lib.platforms; unix;
+    platforms = platforms.unix;
   };
 }