shadowenv: init at 1.2.1
This commit is contained in:
parent
922de4f4b5
commit
8385e4d207
24
pkgs/tools/misc/shadowenv/default.nix
Normal file
24
pkgs/tools/misc/shadowenv/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, rustPlatform, Security }:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "shadowenv";
|
||||||
|
version = "1.2.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "Shopify";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "01hhh45h742z9mjcpmyjpbjf90a5b1m58b6nml2han149xpn5b74";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoSha256 = "0r8s20xgcp5d1ac07g5g4lrrnhrn2qsr1kgj13h2csly22j0ca2a";
|
||||||
|
|
||||||
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "https://shopify.github.io/shadowenv/";
|
||||||
|
description = "reversible directory-local environment variable manipulations";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = [ maintainers.marsam ];
|
||||||
|
};
|
||||||
|
}
|
@ -10064,6 +10064,10 @@ in
|
|||||||
|
|
||||||
scss-lint = callPackage ../development/tools/scss-lint { };
|
scss-lint = callPackage ../development/tools/scss-lint { };
|
||||||
|
|
||||||
|
shadowenv = callPackage ../tools/misc/shadowenv {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
|
};
|
||||||
|
|
||||||
shake = haskell.lib.justStaticExecutables haskellPackages.shake;
|
shake = haskell.lib.justStaticExecutables haskellPackages.shake;
|
||||||
|
|
||||||
shallot = callPackage ../tools/misc/shallot { };
|
shallot = callPackage ../tools/misc/shallot { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user