summaryrefslogtreecommitdiffstats
path: root/pkgs/shells/pash
diff options
context:
space:
mode:
authorFriedrich von Never <friedrich@fornever.me>2015-11-17 22:38:29 +0600
committerFriedrich von Never <friedrich@fornever.me>2015-11-19 23:00:56 +0600
commit1c3b6a2812b108d432fcb612fa8108a02b5236ef (patch)
tree684a2bbf0a5006ad8f75256f2b02972e1820c8de /pkgs/shells/pash
parent5bbb869297bc975469c5e290efb7e8cc9adbfa28 (diff)
pash: init at git-2015-11-06
Diffstat (limited to 'pkgs/shells/pash')
-rw-r--r--pkgs/shells/pash/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/shells/pash/default.nix b/pkgs/shells/pash/default.nix
new file mode 100644
index 000000000000..63669def0ab5
--- /dev/null
+++ b/pkgs/shells/pash/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, fetchFromGitHub, buildDotnetPackage }:
+
+buildDotnetPackage rec {
+ baseName = "pash";
+ version = "git-2015-11-06";
+
+ src = fetchFromGitHub {
+ owner = "Pash-Project";
+ repo = "Pash";
+ rev = "50695a28eaf6c8cbfdc8ecddd91923c64e07b618";
+ sha256 = "17hs1f6ayk9qyyh1xsydk46n6na7flh2kbd36dynk86bnda5d3bn";
+ };
+
+ preConfigure = "rm -rvf $src/Source/PashConsole/bin/*";
+
+ outputFiles = [ "Source/PashConsole/bin/Release/*" ];
+
+ meta = {
+ 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 ];
+ };
+}