about summary refs log tree commit diff
path: root/pkgs/tools/misc/sl
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2014-08-14 21:25:41 +0200
committerVladimír Čunát <vcunat@gmail.com>2014-08-14 21:28:33 +0200
commitae7153b9b0c1414223f7dd6f94f007de90608c0a (patch)
treebdb8e62b0ae048443b0fceff11abd862bb0a3277 /pkgs/tools/misc/sl
parentdfbc9ff78123f750e8c8782d10b2271a8062bc4a (diff)
sl: fix license (close #3072)
From https://github.com/fistonbettens/nixpkgs/commit/7b6591b551afc6a17b
but it failed to apply for me, so I hand-added and corrected the change.
Diffstat (limited to 'pkgs/tools/misc/sl')
-rw-r--r--pkgs/tools/misc/sl/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/tools/misc/sl/default.nix b/pkgs/tools/misc/sl/default.nix
index a2dab4e0eb802..aa35461a7a9e1 100644
--- a/pkgs/tools/misc/sl/default.nix
+++ b/pkgs/tools/misc/sl/default.nix
@@ -21,7 +21,11 @@ stdenv.mkDerivation {
 
   meta = {
     homepage = http://www.tkl.iis.u-tokyo.ac.jp/~toyoda/index_e.html;
-    license = stdenv.lib.licenses.unfree; # I couldn't find its license, only a copyright.
+    license = rec {
+      shortName = "Toyoda Masashi's free software license";
+      fullName = shortName;
+      url = https://github.com/mtoyoda/sl/blob/master/LICENSE;
+    };
     description = "Steam Locomotive runs across your terminal when you type 'sl'";
     platforms = with stdenv.lib.platforms; linux;
   };