mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 06:31:02 +00:00
notify-osd-customizable: init at 0.9.35+16.04.20160415 (#43226)
This commit is contained in:
parent
1cc916b5b2
commit
9a93fa292f
47
pkgs/applications/misc/notify-osd-customizable/default.nix
Normal file
47
pkgs/applications/misc/notify-osd-customizable/default.nix
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
{ stdenv
|
||||||
|
, dbus-glib
|
||||||
|
, fetchurl
|
||||||
|
, glib
|
||||||
|
, gnome3
|
||||||
|
, libnotify
|
||||||
|
, libtool
|
||||||
|
, libwnck3
|
||||||
|
, makeWrapper
|
||||||
|
, pkgconfig
|
||||||
|
}:
|
||||||
|
|
||||||
|
let baseURI = "https://launchpad.net/~leolik/+archive/leolik";
|
||||||
|
in stdenv.mkDerivation rec {
|
||||||
|
name = "notify-osd-${version}";
|
||||||
|
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 = [ pkgconfig ];
|
||||||
|
buildInputs = [
|
||||||
|
glib libwnck3 libnotify dbus-glib makeWrapper
|
||||||
|
gnome3.gsettings-desktop-schemas gnome3.gnome-common
|
||||||
|
libtool
|
||||||
|
];
|
||||||
|
|
||||||
|
configureFlags = "--libexecdir=$(out)/bin";
|
||||||
|
|
||||||
|
preFixup = ''
|
||||||
|
wrapProgram "$out/bin/notify-osd" \
|
||||||
|
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Daemon that displays passive pop-up notifications";
|
||||||
|
homepage = https://launchpad.net/notify-osd;
|
||||||
|
license = licenses.gpl3;
|
||||||
|
maintainers = [ maintainers.imalison ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -4294,6 +4294,8 @@ with pkgs;
|
||||||
|
|
||||||
notify-osd = callPackage ../applications/misc/notify-osd { };
|
notify-osd = callPackage ../applications/misc/notify-osd { };
|
||||||
|
|
||||||
|
notify-osd-customizable = callPackage ../applications/misc/notify-osd-customizable { };
|
||||||
|
|
||||||
nox = callPackage ../tools/package-management/nox { };
|
nox = callPackage ../tools/package-management/nox { };
|
||||||
|
|
||||||
nq = callPackage ../tools/system/nq { };
|
nq = callPackage ../tools/system/nq { };
|
||||||
|
|
Loading…
Reference in a new issue