s/stdenv.lib/lib/
This commit is contained in:
parent
d91c4563aa
commit
75b3d7ca98
2 changed files with 4 additions and 4 deletions
4
pkg.nix
4
pkg.nix
|
@ -6,7 +6,7 @@
|
|||
, JuicyPixels-scale-dct, mime-mail, monad-control, monad-logger
|
||||
, persistent, persistent-mysql, persistent-postgresql
|
||||
, persistent-template, resourcet, safe, safe-exceptions
|
||||
, shakespeare, split, stdenv, template-haskell, text, time
|
||||
, shakespeare, split, lib, template-haskell, text, time
|
||||
, transformers, unordered-containers, vector, wai, wai-extra
|
||||
, wai-logger, warp, yaml, yesod, yesod-auth, yesod-core, yesod-form
|
||||
, yesod-static, yesod-test
|
||||
|
@ -38,7 +38,7 @@ mkDerivation {
|
|||
];
|
||||
doCheck = false;
|
||||
doHaddock = false;
|
||||
license = stdenv.lib.licenses.agpl3;
|
||||
license = lib.licenses.agpl3;
|
||||
postInstall = ''
|
||||
cp -ar config static $out/
|
||||
ln -s /tmp/yammat_session_key.aes $out/config/client_session_key.aes
|
||||
|
|
|
@ -12,7 +12,7 @@ let
|
|||
, JuicyPixels-scale-dct, mime-mail, monad-control, monad-logger
|
||||
, persistent, persistent-mysql, persistent-postgresql
|
||||
, persistent-template, resourcet, safe, safe-exceptions
|
||||
, shakespeare, split, stdenv, template-haskell, text, time
|
||||
, shakespeare, split, lib, template-haskell, text, time
|
||||
, transformers, unordered-containers, vector, wai, wai-extra
|
||||
, wai-logger, warp, yaml, yesod, yesod-auth, yesod-core, yesod-form
|
||||
, yesod-static, yesod-test
|
||||
|
@ -40,7 +40,7 @@ let
|
|||
persistent persistent-mysql resourcet transformers yesod yesod-core
|
||||
yesod-test
|
||||
];
|
||||
license = stdenv.lib.licenses.agpl3;
|
||||
license = lib.licenses.agpl3;
|
||||
};
|
||||
|
||||
haskellPackages = if compiler == "default"
|
||||
|
|
Loading…
Reference in a new issue