aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/tools/security/fpm2/default.nix
blob: aff4e1ee1ec4954b352c028e7881168b675947e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv, fetchurl, pkgconfig, gnupg, gtk2
, libxml2, intltool
}:

with stdenv.lib;

stdenv.mkDerivation rec {
  pname = "fpm2";
  version = "0.79";

  src = fetchurl {
    url = "https://als.regnet.cz/fpm2/download/fpm2-${version}.tar.bz2";
    sha256 = "d55e9ce6be38a44fc1053d82db2d117cf3991a51898bd86d7913bae769f04da7";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ gnupg gtk2 libxml2 intltool ];

  meta = {
    description = "FPM2 is GTK2 port from Figaro's Password Manager originally developed by John Conneely, with some new enhancements";
    homepage    = "https://als.regnet.cz/fpm2/";
    license     = licenses.gpl2;
    platforms   = platforms.linux;
    maintainers = with maintainers; [ hce ];
  };
}