mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
parcellite: use wrapGAppsHook
Also add hicolor icon theme as a dependency. These are needed for parcellite to find icons.
This commit is contained in:
parent
5b9e29c01c
commit
b7c0f858a4
1 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
{ stdenv, fetchFromGitHub, autoreconfHook
|
||||
, gtk2, intltool, pkgconfig }:
|
||||
, gtk2, hicolor_icon_theme, intltool, pkgconfig, wrapGAppsHook }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "parcellite-${version}";
|
||||
|
@ -12,8 +12,8 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "19q4x6x984s6gxk1wpzaxawgvly5vnihivrhmja2kcxhzqrnfhiy";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook intltool pkgconfig ];
|
||||
buildInputs = [ gtk2 ];
|
||||
nativeBuildInputs = [ autoreconfHook intltool pkgconfig wrapGAppsHook ];
|
||||
buildInputs = [ gtk2 hicolor_icon_theme ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Lightweight GTK+ clipboard manager";
|
||||
|
|
Loading…
Reference in a new issue