Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / misc / lssecret / default.nix
blobf27bb538d19a82d88ae25eca924e9757a3576935
1 { lib
2 , stdenv
3 , fetchFromGitLab
4 , pkg-config
5 , libsecret
6 }:
8 stdenv.mkDerivation rec {
9   name = "lssecret";
10   version = "unstable-2022-12-02";
12   src = fetchFromGitLab {
13     owner = "GrantMoyer";
14     repo = name;
15     rev = "20fd771a";
16     hash = "sha256-yU70WZj4EC/sFJxyq2SQ0YQ6RCQHYiW/aQiYWo7+ujk=";
17   };
19   nativeBuildInputs = [ pkg-config ];
20   buildInputs = [ libsecret ];
22   makeFlags = ["DESTDIR=$(out)"];
24   meta = {
25     description = "A tool to list passwords and other secrets stored using the org.freedesktop.secrets dbus api";
26     homepage = "https://gitlab.com/GrantMoyer/lssecret";
27     license = lib.licenses.unlicense;
28     maintainers = with lib.maintainers; [ genericnerdyusername ];
29     platforms = lib.platforms.unix;
30   };