summary refs log tree commit diff
path: root/pkgs/development/interpreters
diff options
context:
space:
mode:
authorPascal Wittmann <mail@pascal-wittmann.de>2014-12-21 00:00:35 +0100
committerPascal Wittmann <mail@pascal-wittmann.de>2014-12-21 00:00:35 +0100
commitf94580da695808d04626775d6aa3864a91b735b2 (patch)
tree9d2abf593c6b89bb6a6c20f2ea7f2b9205fb758b /pkgs/development/interpreters
parentf55545c0c9256f61b7e1bb952da59770da0fe392 (diff)
downloadnixpkgs-f94580da695808d04626775d6aa3864a91b735b2.tar
nixpkgs-f94580da695808d04626775d6aa3864a91b735b2.tar.gz
nixpkgs-f94580da695808d04626775d6aa3864a91b735b2.tar.bz2
nixpkgs-f94580da695808d04626775d6aa3864a91b735b2.tar.lz
nixpkgs-f94580da695808d04626775d6aa3864a91b735b2.tar.xz
nixpkgs-f94580da695808d04626775d6aa3864a91b735b2.tar.zst
nixpkgs-f94580da695808d04626775d6aa3864a91b735b2.zip
Fix license attribute of many bsd-like licensed packages
Diffstat (limited to 'pkgs/development/interpreters')
-rw-r--r--pkgs/development/interpreters/scsh/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/interpreters/scsh/default.nix b/pkgs/development/interpreters/scsh/default.nix
index 010d7c504d3..98b4f55f79b 100644
--- a/pkgs/development/interpreters/scsh/default.nix
+++ b/pkgs/development/interpreters/scsh/default.nix
@@ -15,12 +15,12 @@ stdenv.mkDerivation {
   };
 
   meta = {
-    description = "a Scheme shell";
+    description = "A Scheme shell";
     longDescription = ''
       SCSH is an implementation of the Scheme shell.  It is implemented as
       a heap image which is interpreted by the Scheme 48 virtual machine.
     '';
     homepage = http://www.scsh.net/;
-    license = "BSD";
+    license = stdenv.lib.licenses.bsd3;
   };
 }