summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/graphics
diff options
context:
space:
mode:
authorSamuel Gräfenstein <git@samuelgrf.com>2020-11-05 22:06:46 +0100
committerAlyssa Ross <hi@alyssa.is>2020-11-09 11:39:28 +0000
commit433c1a77260ed5bc8ed5da226ab54c9a204a5605 (patch)
tree3ca049c0a00c63729878900cdf6cceb76c81d1bd /pkgs/tools/graphics
parent88bf1b3e92d96cb64c862db09b7e90263d89664e (diff)
diagrams-builder,mlflow-server: remove trailing whitespace
Diffstat (limited to 'pkgs/tools/graphics')
-rw-r--r--pkgs/tools/graphics/diagrams-builder/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/graphics/diagrams-builder/default.nix b/pkgs/tools/graphics/diagrams-builder/default.nix
index 8a23375d945f..24e43044697d 100644
--- a/pkgs/tools/graphics/diagrams-builder/default.nix
+++ b/pkgs/tools/graphics/diagrams-builder/default.nix
@@ -2,7 +2,7 @@
If user need access to more haskell package for building his
diagrams, he simply has to pass these package through the
extra packages function as follow in `config.nix`:
-
+
~~~
diagrams-builder.override {
extraPackages = self : [myHaskellPackage];
@@ -15,7 +15,7 @@
let
# Used same technique as for the yiCustom package.
- wrappedGhc = ghcWithPackages
+ wrappedGhc = ghcWithPackages
(self: [ diagrams-builder ] ++ extraPackages self);
ghcVersion = wrappedGhc.version;
@@ -25,7 +25,7 @@ let
--set NIX_GHC ${wrappedGhc}/bin/ghc \
--set NIX_GHC_LIBDIR ${wrappedGhc}/lib/ghc-${ghcVersion}
'';
-
+
backends = ["svg" "cairo" "ps"];
in
@@ -35,7 +35,7 @@ stdenv.mkDerivation {
buildInputs = [ makeWrapper ];
- buildCommand = with stdenv.lib;
+ buildCommand = with stdenv.lib;
concatStrings (intersperse "\n" (map exeWrapper backends));
# Will be faster to build the wrapper locally then to fetch it from a binary cache.