summaryrefslogtreecommitdiffstats
path: root/pkgs/development/interpreters/scsh
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/scsh
parentf55545c0c9256f61b7e1bb952da59770da0fe392 (diff)
Fix license attribute of many bsd-like licensed packages
Diffstat (limited to 'pkgs/development/interpreters/scsh')
-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 010d7c504d3a..98b4f55f79b8 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;
};
}