lol
at 18.09-beta 21 lines 666 B view raw
1{stdenv, fetchurl, libX11, libxcb, pkgconfig, xcbutil}: 2 3let 4 version = "0.12"; 5in 6stdenv.mkDerivation { 7 name = "libstartup-notification-${version}"; 8 src = fetchurl { 9 url = "https://www.freedesktop.org/software/startup-notification/releases/startup-notification-${version}.tar.gz"; 10 sha256 = "3c391f7e930c583095045cd2d10eb73a64f085c7fde9d260f2652c7cb3cfbe4a"; 11 }; 12 13 nativeBuildInputs = [ pkgconfig ]; 14 buildInputs = [ libX11 libxcb xcbutil ]; 15 16 meta = { 17 homepage = http://www.freedesktop.org/software/startup-notification; 18 description = "Application startup notification and feedback library"; 19 license = stdenv.lib.licenses.lgpl2; 20 }; 21}