summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorMarkus Kowalewski <markus.kowalewski@gmail.com>2018-11-14 23:24:09 +0100
committerMarkus Kowalewski <markus.kowalewski@gmail.com>2018-11-15 00:13:52 +0100
commita6b854c9a23b746f1ca5d3a81844a0ef3f60c315 (patch)
tree3a997438b689ca71ea48148addb9dfc13e78f601 /pkgs/shells
parentd76c2756051dc90e4e9e302f3a1275fda6b49cca (diff)
downloadnixpkgs-a6b854c9a23b746f1ca5d3a81844a0ef3f60c315.tar
nixpkgs-a6b854c9a23b746f1ca5d3a81844a0ef3f60c315.tar.gz
nixpkgs-a6b854c9a23b746f1ca5d3a81844a0ef3f60c315.tar.bz2
nixpkgs-a6b854c9a23b746f1ca5d3a81844a0ef3f60c315.tar.lz
nixpkgs-a6b854c9a23b746f1ca5d3a81844a0ef3f60c315.tar.xz
nixpkgs-a6b854c9a23b746f1ca5d3a81844a0ef3f60c315.tar.zst
nixpkgs-a6b854c9a23b746f1ca5d3a81844a0ef3f60c315.zip
dash: add licenses
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/dash/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/shells/dash/default.nix b/pkgs/shells/dash/default.nix
index 2db8edd5e0c..f8d592748b3 100644
--- a/pkgs/shells/dash/default.nix
+++ b/pkgs/shells/dash/default.nix
@@ -10,10 +10,11 @@ stdenv.mkDerivation rec {
 
   hardeningDisable = [ "format" ];
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = http://gondor.apana.org.au/~herbert/dash/;
     description = "A POSIX-compliant implementation of /bin/sh that aims to be as small as possible";
-    platforms = stdenv.lib.platforms.unix;
+    platforms = platforms.unix;
+    license = with licenses; [ bsd3 gpl2 ];
   };
 
   passthru = {