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/os-specific/linux/seturgent/default.nix
Normal file
30
pkgs/os-specific/linux/seturgent/default.nix
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{ lib, stdenv, fetchgit, libX11, xorgproto }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "seturgent";
|
||||
version = "1.5";
|
||||
|
||||
src = fetchgit {
|
||||
url = "git://git.codemadness.org/seturgent";
|
||||
rev = version;
|
||||
sha256 = "sha256-XW7ms0BVCf1/fuL3PJ970t6sHkmMY1iLYXfS9R60JX0=";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
libX11
|
||||
xorgproto
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -pv $out/bin
|
||||
mv seturgent $out/bin
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
platforms = platforms.linux;
|
||||
description = "Set an application's urgency hint (or not)";
|
||||
maintainers = with maintainers; [ yarr ];
|
||||
homepage = "https://codemadness.org/seturgent-set-urgency-hints-for-x-applications.html";
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue