1 { fetchFromGitHub, lib, stdenv
2 , autoreconfHook, intltool, pkg-config
3 , gtk3, libayatana-appindicator, xdotool, which, wrapGAppsHook }:
5 stdenv.mkDerivation rec {
9 src = fetchFromGitHub {
10 owner = "CristianHenzel";
12 rev = "45e2ea386d04dbfc411ea370299502450d589d0c";
13 sha256 = "0byqz9hanwmdc7i55xszdby2iqrk93lws7hmjda2kv17g34apwl7";
17 intltoolize --copy --force --automake
20 nativeBuildInputs = [ pkg-config wrapGAppsHook autoreconfHook intltool ];
21 configureFlags = [ "--with-gtk3" "--enable-appindicator=yes" ];
22 buildInputs = [ gtk3 libayatana-appindicator ];
25 "--prefix" "PATH" ":" "${lib.makeBinPath [ xdotool which ]}"
29 description = "Lightweight GTK Clipboard Manager";
30 inherit (src.meta) homepage;
31 license = licenses.gpl3;
32 platforms = platforms.linux;
33 maintainers = with maintainers; [ kamilchm ];