nixpkgs/pkgs/tools/misc/parcellite/default.nix

32 lines
889 B
Nix
Raw Normal View History

2017-03-31 00:41:55 +02:00
{ stdenv, fetchFromGitHub, autoreconfHook
, gtk2, hicolor-icon-theme, intltool, pkgconfig
, which, wrapGAppsHook, xdotool }:
2013-05-18 07:22:49 +02:00
stdenv.mkDerivation rec {
pname = "parcellite";
2017-03-31 00:41:55 +02:00
version = "1.2.1";
2013-05-18 07:22:49 +02:00
2017-03-31 00:41:55 +02:00
src = fetchFromGitHub {
owner = "rickyrockrat";
repo = "parcellite";
rev = version;
sha256 = "19q4x6x984s6gxk1wpzaxawgvly5vnihivrhmja2kcxhzqrnfhiy";
2013-05-18 07:22:49 +02:00
};
nativeBuildInputs = [ autoreconfHook intltool pkgconfig wrapGAppsHook ];
buildInputs = [ gtk2 hicolor-icon-theme ];
2019-10-30 12:34:47 +01:00
NIX_LDFLAGS = "-lgio-2.0";
2013-05-18 07:22:49 +02:00
preFixup = ''
# Need which and xdotool on path to fix auto-pasting.
gappsWrapperArgs+=(--prefix PATH : "${which}/bin:${xdotool}/bin")
'';
2017-03-31 00:41:55 +02:00
meta = with stdenv.lib; {
description = "Lightweight GTK clipboard manager";
homepage = "https://github.com/rickyrockrat/parcellite";
2017-03-31 00:41:55 +02:00
license = licenses.gpl3Plus;
platforms = platforms.linux;
2013-05-18 07:22:49 +02:00
};
}