From 380ed0229cecbe510239e89f4b5140b770efcba5 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Wed, 25 Nov 2015 23:00:35 +0100 Subject: [PATCH] pash: clean up meta information --- pkgs/shells/pash/default.nix | 8 ++++---- 1 file 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 ]; }; }