blob: e659f665026f03ac9099bece8e38e29e23658f2c (
about) (
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
27
28
29
30
31
32
33
|
{
lib,
rustPlatform,
fetchCrate,
pkg-config,
dbus,
nix-update-script,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "secretspec";
version = "0.2.0";
src = fetchCrate {
inherit (finalAttrs) pname version;
hash = "sha256-6a3BerjcLn86XCakyYlMm4FUUQTc7iq/hCvZEbHnp4g=";
};
cargoHash = "sha256-4sKja7dED1RuiRYA2BNqvvYlJhPFiM8IzAgQVeSa9Oc=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ dbus ];
passthru.updateScript = nix-update-script { };
meta = {
description = "Declarative secrets, every environment, any provider";
homepage = "https://secretspec.dev";
license = with lib.licenses; [ asl20 ];
maintainers = with lib.maintainers; [ domenkozar ];
mainProgram = "secretspec";
};
})
|