systemd-credsubst: init at 0.1.0 (#456232)

This commit is contained in:
Sandro
2025-11-17 14:32:43 +00:00
committed by GitHub

View File

@@ -0,0 +1,25 @@
{
lib,
fetchFromGitHub,
rustPlatform,
}:
rustPlatform.buildRustPackage rec {
pname = "systemd-credsubst";
version = "0.1.0";
src = fetchFromGitHub {
owner = "yaxitech";
repo = "systemd-credsubst";
tag = "v${version}";
hash = "sha256-3KbO93OWJuiV8oYLSlqaj0i2x/2GwGxfQ7QwwSrfb1Y=";
};
cargoHash = "sha256-B2TxFgq/8z0KyL2soFwz/OqFVOVMNP7bamOXg0MuSK8=";
meta = {
description = "envsubst for systemd credentials";
longDescription = "Substitute systemd credential references from ExecStart=/ExecStartPre= calls";
homepage = "https://github.com/yaxitech/systemd-credsubst";
license = lib.licenses.asl20;
platforms = lib.platforms.linux;
mainProgram = "systemd-credsubst";
maintainers = [ lib.maintainers.veehaitch ];
};
}