uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
30
pkgs/shells/pash/default.nix
Normal file
30
pkgs/shells/pash/default.nix
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{ lib, fetchFromGitHub, buildDotnetPackage }:
|
||||
|
||||
buildDotnetPackage {
|
||||
pname = "pash";
|
||||
version = "git-2016-07-06";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Pash-Project";
|
||||
repo = "Pash";
|
||||
rev = "8d6a48f5ed70d64f9b49e6849b3ee35b887dc254";
|
||||
sha256 = "0c4wa8qi1zs01p9ck171jkw0n1rsymsrhpsb42gl7warwhpmv59f";
|
||||
};
|
||||
|
||||
strictDeps = true;
|
||||
preConfigure = "rm -rvf $src/Source/PashConsole/bin/*";
|
||||
|
||||
outputFiles = [ "Source/PashConsole/bin/Release/*" ];
|
||||
|
||||
meta = with 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";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue