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/shells/zsh/zsh-clipboard/default.nix
Normal file
28
pkgs/shells/zsh/zsh-clipboard/default.nix
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{ stdenv, lib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "zsh-clipboard";
|
||||
version = "1.0";
|
||||
|
||||
src = ./.;
|
||||
|
||||
strictDeps = true;
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = ''
|
||||
install -D -m0444 -t $out/share/zsh/plugins/clipboard ./clipboard.plugin.zsh
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Ohmyzsh plugin that integrates kill-ring with system clipboard";
|
||||
longDescription = ''
|
||||
Ohmyzsh plugin that integrates kill-ring with system clipboard.
|
||||
|
||||
Key bindings for C-y, C-k, C-u, M-d, M-backspace and M-w are rebound.
|
||||
Behaviour of these keys should not be changed.
|
||||
'';
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ bb2020 ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue