|
1 | 1 | { stdenv, fetchFromGitHub, fetchpatch
|
2 |
| -, pkgconfig, which, perl |
3 |
| -, cairo, dbus, freetype, gdk_pixbuf, glib, libX11, libXScrnSaver |
4 |
| -, libXext, libXinerama, libnotify, libxdg_basedir, pango, xproto |
5 |
| -, librsvg |
| 2 | +, pkgconfig, which, perl, gtk2, xrandr |
| 3 | +, cairo, dbus, gdk_pixbuf, glib, libX11, libXScrnSaver |
| 4 | +, libXinerama, libnotify, libxdg_basedir, pango, xproto, librsvg |
6 | 5 | }:
|
7 | 6 |
|
8 | 7 | stdenv.mkDerivation rec {
|
9 | 8 | name = "dunst-${version}";
|
10 |
| - version = "1.1.0"; |
| 9 | + version = "1.2.0"; |
11 | 10 |
|
12 | 11 | src = fetchFromGitHub {
|
13 |
| - owner = "knopwob"; |
| 12 | + owner = "dunst-project"; |
14 | 13 | repo = "dunst";
|
15 | 14 | rev = "v${version}";
|
16 |
| - sha256 = "102s0rkcdz22hnacsi3dhm7kj3lsw9gnikmh3a7wk862nkvvwjmk"; |
| 15 | + sha256 = "0jncnb4z4hg92ws08bkf52jswsd4vqlzyznwbynhh2jh6q0sl18b"; |
17 | 16 | };
|
18 | 17 |
|
19 |
| - patches = [(fetchpatch { |
20 |
| - name = "add-svg-support.patch"; |
21 |
| - url = "https://github.com/knopwob/dunst/commit/63b11141185d1d07a6d12212257a543e182d250a.patch"; |
22 |
| - sha256 = "0giiaj5zjim7xqcav5ij5gn4x6nnchkllwcx0ln16j0p3vbi4y4x"; |
23 |
| - })]; |
24 |
| - |
25 | 18 | nativeBuildInputs = [ perl pkgconfig which ];
|
26 | 19 |
|
27 | 20 | buildInputs = [
|
28 |
| - cairo dbus freetype gdk_pixbuf glib libX11 libXScrnSaver libXext |
29 |
| - libXinerama libnotify libxdg_basedir pango xproto librsvg |
| 21 | + cairo dbus gdk_pixbuf glib libX11 libXScrnSaver |
| 22 | + libXinerama libnotify libxdg_basedir pango xproto librsvg gtk2 xrandr |
30 | 23 | ];
|
31 | 24 |
|
32 | 25 | outputs = [ "out" "man" ];
|
|
0 commit comments