summary refs log tree commit diff
path: root/pkgs/shells/pash/default.nix
blob: 8b8601e326cc5a3a263756246723e0c3aae16bbd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv, fetchFromGitHub, buildDotnetPackage }:

buildDotnetPackage {
  baseName = "pash";
  version = "git-2016-07-06";
  
  src = fetchFromGitHub {
    owner = "Pash-Project";
    repo = "Pash";
    rev = "8d6a48f5ed70d64f9b49e6849b3ee35b887dc254";
    sha256 = "0c4wa8qi1zs01p9ck171jkw0n1rsymsrhpsb42gl7warwhpmv59f";
  };

  preConfigure = "rm -rvf $src/Source/PashConsole/bin/*";

  outputFiles = [ "Source/PashConsole/bin/Release/*" ];

  meta = with stdenv.lib; {
    description = "An open source implementation of Windows PowerShell";
    homepage = https://github.com/Pash-Project/Pash;
    maintainers = [ maintainers.fornever maintainers.vrthra ];
    platforms = platforms.all;
    license = with licenses; [ bsd3 gpl3 ];
  };

  passthru = {
    shellPath = "/bin/pash";
  };
}