mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
dunst: 1.1.0 -> 1.2.0
This commit is contained in:
parent
78fc7269be
commit
9906e4492e
1 changed files with 8 additions and 15 deletions
|
@ -1,32 +1,25 @@
|
|||
{ stdenv, fetchFromGitHub, fetchpatch
|
||||
, pkgconfig, which, perl
|
||||
, cairo, dbus, freetype, gdk_pixbuf, glib, libX11, libXScrnSaver
|
||||
, libXext, libXinerama, libnotify, libxdg_basedir, pango, xproto
|
||||
, librsvg
|
||||
, pkgconfig, which, perl, gtk2, xrandr
|
||||
, cairo, dbus, gdk_pixbuf, glib, libX11, libXScrnSaver
|
||||
, libXinerama, libnotify, libxdg_basedir, pango, xproto, librsvg
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "dunst-${version}";
|
||||
version = "1.1.0";
|
||||
version = "1.2.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "knopwob";
|
||||
owner = "dunst-project";
|
||||
repo = "dunst";
|
||||
rev = "v${version}";
|
||||
sha256 = "102s0rkcdz22hnacsi3dhm7kj3lsw9gnikmh3a7wk862nkvvwjmk";
|
||||
sha256 = "0jncnb4z4hg92ws08bkf52jswsd4vqlzyznwbynhh2jh6q0sl18b";
|
||||
};
|
||||
|
||||
patches = [(fetchpatch {
|
||||
name = "add-svg-support.patch";
|
||||
url = "https://github.com/knopwob/dunst/commit/63b11141185d1d07a6d12212257a543e182d250a.patch";
|
||||
sha256 = "0giiaj5zjim7xqcav5ij5gn4x6nnchkllwcx0ln16j0p3vbi4y4x";
|
||||
})];
|
||||
|
||||
nativeBuildInputs = [ perl pkgconfig which ];
|
||||
|
||||
buildInputs = [
|
||||
cairo dbus freetype gdk_pixbuf glib libX11 libXScrnSaver libXext
|
||||
libXinerama libnotify libxdg_basedir pango xproto librsvg
|
||||
cairo dbus gdk_pixbuf glib libX11 libXScrnSaver
|
||||
libXinerama libnotify libxdg_basedir pango xproto librsvg gtk2 xrandr
|
||||
];
|
||||
|
||||
outputs = [ "out" "man" ];
|
||||
|
|
Loading…
Reference in a new issue