Merge pull request #156206 from sternenseemann/haskell-lib-move

haskell.lib: move lib.nix into same directory as compose.nix
This commit is contained in:
Ellie Hermaszewska 2022-01-24 08:53:55 +08:00 committed by GitHub
commit edba32bc37
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@ rec {
between the function name and argument of another. haskell.lib.compose is
preferred for any new code.
*/
compose = import ./lib/compose.nix { inherit pkgs lib; };
compose = import ./compose.nix { inherit pkgs lib; };
/* This function takes a file like `hackage-packages.nix` and constructs
a full package set out of that.

View file

@ -19,7 +19,7 @@ let
"ghcHEAD"
];
haskellLibUncomposable = import ../development/haskell-modules/lib.nix {
haskellLibUncomposable = import ../development/haskell-modules/lib {
inherit (pkgs) lib;
inherit pkgs;
};