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
48
pkgs/applications/misc/notify-osd-customizable/default.nix
Normal file
48
pkgs/applications/misc/notify-osd-customizable/default.nix
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
{ lib, stdenv
|
||||
, dbus-glib
|
||||
, fetchurl
|
||||
, glib
|
||||
, gnome
|
||||
, libnotify
|
||||
, libtool
|
||||
, libwnck
|
||||
, makeWrapper
|
||||
, pkg-config
|
||||
, gsettings-desktop-schemas
|
||||
}:
|
||||
|
||||
let baseURI = "https://launchpad.net/~leolik/+archive/leolik";
|
||||
in stdenv.mkDerivation rec {
|
||||
pname = "notify-osd";
|
||||
version = "0.9.35+16.04.20160415";
|
||||
|
||||
src = fetchurl {
|
||||
url = "${baseURI}/+files/notify-osd_${version}-0ubuntu1-leolik~ppa0.tar.gz";
|
||||
sha256 = "026dr46jh3xc4103wnslzy7pxbxkkpflh52c59j8vzwaa7bvvzkv";
|
||||
name = "notify-osd-customizable.tar.gz";
|
||||
};
|
||||
|
||||
preConfigure = "./autogen.sh --libexecdir=$(out)/bin";
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [
|
||||
glib libwnck libnotify dbus-glib makeWrapper
|
||||
gsettings-desktop-schemas gnome.gnome-common
|
||||
libtool
|
||||
];
|
||||
|
||||
configureFlags = [ "--libexecdir=$(out)/bin" ];
|
||||
|
||||
preFixup = ''
|
||||
wrapProgram "$out/bin/notify-osd" \
|
||||
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Daemon that displays passive pop-up notifications";
|
||||
homepage = "https://launchpad.net/notify-osd";
|
||||
license = licenses.gpl3;
|
||||
maintainers = [ maintainers.imalison ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue