summary refs log tree commit diff
diff options
context:
space:
mode:
authorPascal Wittmann <mail@pascal-wittmann.de>2015-11-25 23:00:35 +0100
committerPascal Wittmann <mail@pascal-wittmann.de>2015-11-25 23:06:09 +0100
commit380ed0229cecbe510239e89f4b5140b770efcba5 (patch)
tree4e6f35c5633eb93306cdd6baf5eb7ec9de19c851
parent765afaec8805e4b58c09cf1dc71c0c18232dbda2 (diff)
downloadnixpkgs-380ed0229cecbe510239e89f4b5140b770efcba5.tar
nixpkgs-380ed0229cecbe510239e89f4b5140b770efcba5.tar.gz
nixpkgs-380ed0229cecbe510239e89f4b5140b770efcba5.tar.bz2
nixpkgs-380ed0229cecbe510239e89f4b5140b770efcba5.tar.lz
nixpkgs-380ed0229cecbe510239e89f4b5140b770efcba5.tar.xz
nixpkgs-380ed0229cecbe510239e89f4b5140b770efcba5.tar.zst
nixpkgs-380ed0229cecbe510239e89f4b5140b770efcba5.zip
pash: clean up meta information
-rw-r--r--pkgs/shells/pash/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/shells/pash/default.nix b/pkgs/shells/pash/default.nix
index 63669def0ab..b9a8397e3ba 100644
--- a/pkgs/shells/pash/default.nix
+++ b/pkgs/shells/pash/default.nix
@@ -15,11 +15,11 @@ buildDotnetPackage rec {
 
   outputFiles = [ "Source/PashConsole/bin/Release/*" ];
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "An open source implementation of Windows PowerShell";
     homepage = https://github.com/Pash-Project/Pash;
-    maintainers = stdenv.lib.maintainers.fornever;
-    platforms = with stdenv.lib.platforms; all;
-    license = with stdenv.lib.licenses; [ bsd3 gpl3 ];
+    maintainers = [ maintainers.fornever ];
+    platforms = platforms.all;
+    license = with licenses; [ bsd3 gpl3 ];
   };
 }