Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
53 lines
1021 B
Nix
53 lines
1021 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
gtk2,
|
|
hicolor-icon-theme,
|
|
intltool,
|
|
pkg-config,
|
|
which,
|
|
wrapGAppsHook3,
|
|
xdotool,
|
|
libappindicator-gtk2,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "parcellite";
|
|
version = "1.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rickyrockrat";
|
|
repo = "parcellite";
|
|
rev = version;
|
|
sha256 = "19q4x6x984s6gxk1wpzaxawgvly5vnihivrhmja2kcxhzqrnfhiy";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
intltool
|
|
pkg-config
|
|
wrapGAppsHook3
|
|
];
|
|
buildInputs = [
|
|
gtk2
|
|
hicolor-icon-theme
|
|
libappindicator-gtk2
|
|
];
|
|
NIX_LDFLAGS = "-lgio-2.0";
|
|
|
|
preFixup = ''
|
|
# Need which and xdotool on path to fix auto-pasting.
|
|
gappsWrapperArgs+=(--prefix PATH : "${which}/bin:${xdotool}/bin")
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Lightweight GTK clipboard manager";
|
|
homepage = "https://github.com/rickyrockrat/parcellite";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
mainProgram = "parcellite";
|
|
};
|
|
}
|