mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
26 lines
660 B
Nix
26 lines
660 B
Nix
{ lib, fetchCrate, rustPlatform }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "dotenvy";
|
|
version = "0.15.7";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
hash = "sha256-virK/TpYBmwTf5UCQCqC/df8iKYAzPBfsQ1nQkFKF2Y=";
|
|
};
|
|
|
|
cargoHash = "sha256-qjFTv15FSvgYgQ4nTEIo0KUqaCbg6E+W5B2B5BH6sp4=";
|
|
|
|
cargoBuildFlags = [ "--bin=dotenvy" "--features=cli" ];
|
|
|
|
# just run unittests and skip doc-tests
|
|
cargoTestFlags = [ "--lib" ];
|
|
|
|
meta = {
|
|
description = "Loads environment variables from a .env file";
|
|
homepage = "https://github.com/allan2/dotenvy";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ phlip9 ];
|
|
};
|
|
}
|