ungoogled-chromium: 131.0.6778.264-1 -> 132.0.6834.83-1 (#375093)
[NixPkgs.git] / pkgs / tools / security / pass / extensions / file.nix
blob54c7e0f8e12cf657b547428dc329c9c7d07d3f7a
2   lib,
3   stdenv,
4   fetchFromGitHub,
5 }:
7 stdenv.mkDerivation rec {
8   pname = "pass-file";
9   version = "1.0.0";
11   src = fetchFromGitHub {
12     owner = "dvogt23";
13     repo = pname;
14     rev = version;
15     hash = "sha256-18KvmcfLwelyk9RV/IMaj6O/nkQEQz84eUEB/mRaKE4=";
16   };
18   installFlags = [ "PREFIX=$(out)" ];
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   };