nixpkgs/pkgs/tools/security/fpm2/default.nix

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

25 lines
725 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, gnupg, gtk3
, libxml2, intltool, nettle
2016-10-19 20:15:14 +02:00
}:
stdenv.mkDerivation rec {
pname = "fpm2";
version = "0.90";
2016-10-19 20:15:14 +02:00
src = fetchurl {
url = "https://als.regnet.cz/fpm2/download/fpm2-${version}.tar.xz";
sha256 = "1lfzja3vzd6l6hfvw8gvg4qkl5iy6gra5pa8gjlps9l63k2bjfhz";
2016-10-19 20:15:14 +02:00
};
2021-01-17 04:51:22 +01:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ gnupg gtk3 libxml2 intltool nettle ];
2016-10-19 20:15:14 +02:00
meta = with lib; {
description = "GTK2 port from Figaro's Password Manager originally developed by John Conneely, with some new enhancements";
homepage = "https://als.regnet.cz/fpm2/";
2016-10-19 20:15:14 +02:00
license = licenses.gpl2;
2016-10-20 16:35:58 +02:00
platforms = platforms.linux;
2016-10-19 20:15:14 +02:00
maintainers = with maintainers; [ hce ];
};
}