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.

33 lines
719 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, gtk2, openssh }:
2020-06-23 13:59:22 +00:00
stdenv.mkDerivation rec {
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 = pname;
rev = "v${version}";
2022-12-23 08:26:06 +00:00
sha256 = "sha256-1GER+SxTpbMiYLwFCwLX/hLvzCIqutyvQc9DNJ7d1C0=";
2020-06-23 13:59:22 +00:00
};
nativeBuildInputs = [
autoreconfHook
pkg-config
];
buildInputs = [
gtk2
openssh
];
meta = with lib; {
broken = stdenv.isDarwin;
2020-06-23 13:59:22 +00:00
description = "A small SSH askpass GUI using GTK+2";
homepage = "https://github.com/atj/ssh-askpass-fullscreen";
license = licenses.gpl2;
maintainers = with maintainers; [ caadar ];
platforms = platforms.unix;
};
}