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
28
pkgs/development/tools/misc/chruby-fish/default.nix
Normal file
28
pkgs/development/tools/misc/chruby-fish/default.nix
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{ stdenv, lib, fetchFromGitHub, chruby }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "chruby-fish";
|
||||
version = "0.8.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "JeanMertz";
|
||||
repo = "chruby-fish";
|
||||
rev = "v${version}";
|
||||
sha256 = "15q0ywsn9pcypbpvlq0wb41x4igxm9bsvhg9a05dqw1n437qjhyb";
|
||||
};
|
||||
|
||||
postInstall = ''
|
||||
sed -i -e '1iset CHRUBY_ROOT ${chruby}' $out/share/chruby/auto.fish
|
||||
sed -i -e '1iset CHRUBY_ROOT ${chruby}' $out/share/chruby/chruby.fish
|
||||
'';
|
||||
|
||||
installFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
meta = {
|
||||
description = "Thin wrapper around chruby to make it work with the Fish shell";
|
||||
homepage = "https://github.com/JeanMertz/chruby-fish";
|
||||
license = lib.licenses.mit;
|
||||
platforms = lib.platforms.all;
|
||||
maintainers = [ lib.maintainers.cohei ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue