lock: 1.3.0 -> 1.3.4 (#364295)
[NixPkgs.git] / pkgs / by-name / ls / lssecret / package.nix
blob16c14eb2d44acba90dc21de2c997e6df4d8c22ca
2   lib,
3   stdenv,
4   fetchFromGitLab,
5   pkg-config,
6   libsecret,
7 }:
9 stdenv.mkDerivation rec {
10   pname = "lssecret";
11   version = "unstable-2022-12-02";
13   src = fetchFromGitLab {
14     owner = "GrantMoyer";
15     repo = "lssecret";
16     rev = "20fd771a";
17     hash = "sha256-yU70WZj4EC/sFJxyq2SQ0YQ6RCQHYiW/aQiYWo7+ujk=";
18   };
20   nativeBuildInputs = [ pkg-config ];
21   buildInputs = [ libsecret ];
23   makeFlags = [ "DESTDIR=$(out)" ];
25   meta = {
26     description = "Tool to list passwords and other secrets stored using the org.freedesktop.secrets dbus api";
27     homepage = "https://gitlab.com/GrantMoyer/lssecret";
28     license = lib.licenses.unlicense;
29     maintainers = with lib.maintainers; [ genericnerdyusername ];
30     platforms = lib.platforms.unix;
31     mainProgram = "lssecret";
32   };