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
29
pkgs/misc/screensavers/xssproxy/default.nix
Normal file
29
pkgs/misc/screensavers/xssproxy/default.nix
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{ lib, stdenv, fetchFromGitHub, glib, pkg-config, xorg, dbus }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "xssproxy";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "timakro";
|
||||
repo = "xssproxy";
|
||||
rev = "v${version}";
|
||||
sha256 = "0c83wmipnsdnbihc5niyczs7jrkss2s8n6iwwjdia7hkjzbd0hl7";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ glib xorg.libX11 xorg.libXScrnSaver dbus ];
|
||||
|
||||
makeFlags = [
|
||||
"bindir=$(out)/bin"
|
||||
"man1dir=$(out)/share/man/man1"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Forward freedesktop.org Idle Inhibition Service calls to Xss";
|
||||
homepage = "https://github.com/timakro/xssproxy";
|
||||
license = lib.licenses.gpl3;
|
||||
maintainers = with lib.maintainers; [ benley ];
|
||||
platforms = lib.platforms.unix;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue