mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
callCabal2nix: Fixed indentation
This commit is contained in:
parent
24b47526ce
commit
934c8c7a93
@ -85,13 +85,13 @@ let
|
||||
|
||||
# Creates a Haskell package from a source package by calling cabal2nix on the source.
|
||||
callCabal2nix = name: src: args:
|
||||
let
|
||||
# Filter out files other than the cabal file. This ensures
|
||||
# that we don't create new derivations even when the cabal
|
||||
# file hasn't changed.
|
||||
justCabal = builtins.filterSource (path: type: pkgs.lib.hasSuffix ".cabal" path) src;
|
||||
drv = self.callPackage (haskellSrc2nix { inherit name; src = justCabal; }) args;
|
||||
in overrideCabal drv (drv': { inherit src; }); # Restore the desired src.
|
||||
let
|
||||
# Filter out files other than the cabal file. This ensures
|
||||
# that we don't create new derivations even when the cabal
|
||||
# file hasn't changed.
|
||||
justCabal = builtins.filterSource (path: type: pkgs.lib.hasSuffix ".cabal" path) src;
|
||||
drv = self.callPackage (haskellSrc2nix { inherit name; src = justCabal; }) args;
|
||||
in overrideCabal drv (drv': { inherit src; }); # Restore the desired src.
|
||||
|
||||
ghcWithPackages = selectFrom: withPackages (selectFrom self);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user