nixpkgs/pkgs/by-name/ss/ssh-askpass-fullscreen/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
876 B
Nix
Raw Normal View History

{ lib
, stdenv
, autoreconfHook
, fetchFromGitHub
, gtk2
, openssh
, pkg-config
}:
2020-06-23 13:59:22 +00:00
stdenv.mkDerivation (finalAttrs: {
2020-06-23 13:59:22 +00:00
pname = "ssh-askpass-fullscreen";
2022-12-23 08:26:06 +00:00
version = "1.3";
2020-06-23 13:59:22 +00:00
src = fetchFromGitHub {
owner = "atj";
repo = "ssh-askpass-fullscreen";
rev = "v${finalAttrs.version}";
hash = "sha256-1GER+SxTpbMiYLwFCwLX/hLvzCIqutyvQc9DNJ7d1C0=";
2020-06-23 13:59:22 +00:00
};
nativeBuildInputs = [
autoreconfHook
pkg-config
];
buildInputs = [
gtk2
openssh
];
strictDeps = true;
meta = {
2020-06-23 13:59:22 +00:00
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 = with lib.maintainers; [ AndersonTorres ];
platforms = lib.platforms.unix;
2020-06-23 13:59:22 +00:00
};
})