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
44 lines
848 B
Nix
44 lines
848 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
autoreconfHook,
|
|
fetchFromGitHub,
|
|
gtk2,
|
|
openssh,
|
|
pkg-config,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "ssh-askpass-fullscreen";
|
|
version = "1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "atj";
|
|
repo = "ssh-askpass-fullscreen";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-1GER+SxTpbMiYLwFCwLX/hLvzCIqutyvQc9DNJ7d1C0=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk2
|
|
openssh
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
meta = {
|
|
homepage = "https://github.com/atj/ssh-askpass-fullscreen";
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
description = "Small, fullscreen SSH askpass GUI using GTK+2";
|
|
license = with lib.licenses; [ gpl2Plus ];
|
|
mainProgram = "ssh-askpass-fullscreen";
|
|
maintainers = [ ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
})
|