forked from mirrors/nixpkgs
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
49 lines
1.1 KiB
Nix
49 lines
1.1 KiB
Nix
{ lib, stdenv
|
|
, dbus-glib
|
|
, fetchurl
|
|
, glib
|
|
, gnome3
|
|
, libnotify
|
|
, libtool
|
|
, libwnck3
|
|
, makeWrapper
|
|
, pkgconfig
|
|
, 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 = [ pkgconfig ];
|
|
buildInputs = [
|
|
glib libwnck3 libnotify dbus-glib makeWrapper
|
|
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 lib; {
|
|
description = "Daemon that displays passive pop-up notifications";
|
|
homepage = "https://launchpad.net/notify-osd";
|
|
license = licenses.gpl3;
|
|
maintainers = [ maintainers.imalison ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|