novops: init at v0.12.1

This commit is contained in:
Pierre beucher 2024-03-22 14:53:48 +01:00
parent 4cee1db7e8
commit 58be68544f
1 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,48 @@
{ lib
, fetchFromGitHub
, rustPlatform
, pkg-config
, openssl
, stdenv
, libiconv
, darwin
}:
rustPlatform.buildRustPackage rec {
pname = "novops";
version = "0.12.1";
src = fetchFromGitHub {
owner = "PierreBeucher";
repo = pname;
rev = "v${version}";
hash = "sha256-iQFw3m7dpAii/Nc1UQ/ZXTuHvj5vGsp3SOqd14uHUpc=";
};
cargoHash = "sha256-mQ7Vm80S4FALWiEsV+68pNrah36aYu7PediRlJUXLAk=";
buildInputs = [
openssl # required for openssl-sys
] ++ lib.optional stdenv.isDarwin [
libiconv
darwin.apple_sdk.frameworks.SystemConfiguration
];
nativeBuildInputs = [
pkg-config # required for openssl-sys
];
cargoTestFlags = [
# Only run lib tests (unit tests)
# All other tests are integration tests which should not be run with Nix build
"--lib"
];
meta = with lib; {
description = "Cross-platform secret & config manager for development and CI environments";
homepage = "https://github.com/PierreBeucher/novops";
license = licenses.lgpl3;
maintainers = with maintainers; [ pbeucher ];
mainProgram = "novops";
};
}