shadowenv: init at 1.2.1

This commit is contained in:
Mario Rodas 2019-10-04 04:20:00 -05:00 committed by Lassulus
parent 922de4f4b5
commit 8385e4d207
2 changed files with 28 additions and 0 deletions

View 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 ];
};
}

View File

@ -10064,6 +10064,10 @@ in
scss-lint = callPackage ../development/tools/scss-lint { };
shadowenv = callPackage ../tools/misc/shadowenv {
inherit (darwin.apple_sdk.frameworks) Security;
};
shake = haskell.lib.justStaticExecutables haskellPackages.shake;
shallot = callPackage ../tools/misc/shallot { };