nixpkgs/pkgs/tools/networking/ssh-askpass-fullscreen/default.nix
Rick van Schijndel cd3c25616d treewide: pkgs/tools: mark broken for darwin
All packages that were failing on x86_64-darwin are marked broken.
I'm assuming here that these are also broken on aarch64-darwin.
2022-05-29 10:56:04 +02:00

33 lines
720 B
Nix

{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, gtk2, openssh }:
stdenv.mkDerivation rec {
pname = "ssh-askpass-fullscreen";
version = "1.2";
src = fetchFromGitHub {
owner = "atj";
repo = pname;
rev = "v${version}";
sha256 = "1zldhylln412974cnxyqcrrc6b4ry3m9s5ijq3dnwz2g7nz1bx9d";
};
nativeBuildInputs = [
autoreconfHook
pkg-config
];
buildInputs = [
gtk2
openssh
];
meta = with lib; {
broken = stdenv.isDarwin;
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;
};
}