3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
15 lines
408 B
Nix
15 lines
408 B
Nix
{ cabal, hspec, QuickCheck }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "setenv";
|
|
version = "0.1.0";
|
|
sha256 = "04w42bpfbrs5crjp19zzi9dg61xpz4wvmjs2vc7q7qxblyhdfdsy";
|
|
testDepends = [ hspec QuickCheck ];
|
|
doCheck = false;
|
|
meta = {
|
|
description = "A cross-platform library for setting environment variables";
|
|
license = self.stdenv.lib.licenses.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|