mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
57bccb3cb8
* treewide: http -> https sources This updates the source urls of all top-level packages from http to https where possible. * buildtorrent: fix url and tab -> spaces
22 lines
666 B
Nix
22 lines
666 B
Nix
{stdenv, fetchurl, libX11, libxcb, pkgconfig, xcbutil}:
|
|
|
|
let
|
|
version = "0.12";
|
|
in
|
|
stdenv.mkDerivation {
|
|
name = "libstartup-notification-${version}";
|
|
src = fetchurl {
|
|
url = "https://www.freedesktop.org/software/startup-notification/releases/startup-notification-${version}.tar.gz";
|
|
sha256 = "3c391f7e930c583095045cd2d10eb73a64f085c7fde9d260f2652c7cb3cfbe4a";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ libX11 libxcb xcbutil ];
|
|
|
|
meta = {
|
|
homepage = http://www.freedesktop.org/software/startup-notification;
|
|
description = "Application startup notification and feedback library";
|
|
license = stdenv.lib.licenses.lgpl2;
|
|
};
|
|
}
|