nixpkgs/pkgs/applications/misc/clipit/default.nix

36 lines
943 B
Nix
Raw Normal View History

2020-04-02 14:36:35 +00:00
{ fetchFromGitHub, fetchpatch, stdenv
, autoreconfHook, intltool, pkgconfig
, gtk3, xdotool, which, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "clipit";
2020-04-30 22:20:52 +00:00
version = "1.4.5";
2020-04-02 14:36:35 +00:00
src = fetchFromGitHub {
2020-04-30 22:20:52 +00:00
owner = "CristianHenzel";
2020-04-02 14:36:35 +00:00
repo = "ClipIt";
2020-04-30 22:20:52 +00:00
rev = "45e2ea386d04dbfc411ea370299502450d589d0c";
sha256 = "0byqz9hanwmdc7i55xszdby2iqrk93lws7hmjda2kv17g34apwl7";
};
2020-04-02 14:36:35 +00:00
preConfigure = ''
intltoolize --copy --force --automake
'';
nativeBuildInputs = [ pkgconfig wrapGAppsHook autoreconfHook intltool ];
configureFlags = [ "--with-gtk3" ];
buildInputs = [ gtk3 ];
gappsWrapperArgs = [
"--prefix" "PATH" ":" "${stdenv.lib.makeBinPath [ xdotool which ]}"
];
meta = with stdenv.lib; {
description = "Lightweight GTK Clipboard Manager";
2020-04-02 14:36:35 +00:00
inherit (src.meta) homepage;
license = licenses.gpl3;
platforms = platforms.linux;
2020-04-30 22:20:52 +00:00
maintainers = with maintainers; [ kamilchm ];
};
}