1{
2 lib,
3 stdenv,
4 fetchFromGitHub,
5}:
6
7stdenv.mkDerivation rec {
8 pname = "pass-file";
9 version = "1.0.0";
10
11 src = fetchFromGitHub {
12 owner = "dvogt23";
13 repo = pname;
14 rev = version;
15 hash = "sha256-18KvmcfLwelyk9RV/IMaj6O/nkQEQz84eUEB/mRaKE4=";
16 };
17
18 installFlags = [ "PREFIX=$(out)" ];
19
20 meta = with lib; {
21 description = "Pass extension that allows to add files to password-store";
22 homepage = "https://github.com/dvogt23/pass-file";
23 license = licenses.gpl3Plus;
24 maintainers = with maintainers; [ taranarmo ];
25 platforms = platforms.unix;
26 };
27}