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
26
pkgs/shells/zsh/zsh-better-npm-completion/default.nix
Normal file
26
pkgs/shells/zsh/zsh-better-npm-completion/default.nix
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{ lib, stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "zsh-better-npm-completion";
|
||||
version = "unstable-2019-11-19";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "lukechilds";
|
||||
repo = "zsh-better-npm-completion";
|
||||
rev = "0a7cf042415324ec38a186fdcbc9af163f0d7e69";
|
||||
sha256 = "16z7k5n1rcl9i61lrm7i5dsqsmhvdp1y4y5ii6hv2xpp470addgy";
|
||||
};
|
||||
|
||||
strictDeps = true;
|
||||
installPhase = ''
|
||||
install -Dm 0644 zsh-better-npm-completion.plugin.zsh $out/share/zsh-better-npm-completion
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Better completion for npm";
|
||||
homepage = "https://github.com/lukechilds/zsh-better-npm-completion";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.unix;
|
||||
maintainers = [ maintainers.gerschtli ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue