Merge branch 'callCabal2nix-restricted'
This commit is contained in:
commit
8a60691dc6
@ -1,14 +0,0 @@
|
||||
# | Discard the context of a string while ensuring that expected path
|
||||
# validity invariants hold.
|
||||
#
|
||||
# This relies on import-from-derivation, but it is only useful in
|
||||
# contexts where the string is going to be used in an
|
||||
# import-from-derivation anyway.
|
||||
#
|
||||
# safeDiscardStringContext : String → String
|
||||
{ writeText }: s:
|
||||
builtins.seq
|
||||
(import (writeText
|
||||
"discard.nix"
|
||||
"${builtins.substring 0 0 s}null\n"))
|
||||
(builtins.unsafeDiscardStringContext s)
|
@ -148,14 +148,13 @@ in package-set { inherit pkgs stdenv callPackage; } self // {
|
||||
callCabal2nix = name: src: args:
|
||||
overrideCabal (self.callPackage (haskellSrc2nix {
|
||||
inherit name;
|
||||
src = pkgs.lib.cleanSourceWith
|
||||
{ src = if pkgs.lib.canCleanSource src
|
||||
then src
|
||||
else pkgs.safeDiscardStringContext src;
|
||||
filter = path: type:
|
||||
pkgs.lib.hasSuffix "${name}.cabal" path ||
|
||||
pkgs.lib.hasSuffix "package.yaml" path;
|
||||
};
|
||||
src =
|
||||
let filter = path: type:
|
||||
pkgs.lib.hasSuffix "${name}.cabal" path ||
|
||||
baseNameOf path == "package.yaml";
|
||||
in if pkgs.lib.canCleanSource src
|
||||
then pkgs.lib.cleanSourceWith { inherit src filter; }
|
||||
else src;
|
||||
}) args) (_: { inherit src; });
|
||||
|
||||
# : { root : Path
|
||||
|
@ -20842,8 +20842,6 @@ with pkgs;
|
||||
|
||||
tlwg = callPackage ../data/fonts/tlwg { };
|
||||
|
||||
safeDiscardStringContext = callPackage ../build-support/safe-discard-string-context.nix { };
|
||||
|
||||
simplehttp2server = callPackage ../servers/simplehttp2server { };
|
||||
|
||||
diceware = callPackage ../tools/security/diceware { };
|
||||
|
Loading…
Reference in New Issue
Block a user