File tree 2 files changed +29
-4
lines changed
2 files changed +29
-4
lines changed Original file line number Diff line number Diff line change 208
208
} ;
209
209
} ;
210
210
} ;
211
+ cabal2nix = mkOption {
212
+ description = "cabal2nix hook" ;
213
+ type = types . submodule {
214
+ imports = [ hookModule ] ;
215
+ options . settings = {
216
+ outputFilename =
217
+ mkOption {
218
+ type = types . str ;
219
+ description = "The name of the output file generated after running `cabal2nix`." ;
220
+ default = "default.nix" ;
221
+ } ;
222
+ } ;
223
+ } ;
224
+ } ;
211
225
clippy = mkOption {
212
226
description = "clippy hook" ;
213
227
type = types . submodule
2034
2048
cabal2nix =
2035
2049
{
2036
2050
name = "cabal2nix" ;
2037
- description = "Run `cabal2nix` on all `*.cabal` files to generate corresponding `default .nix` files" ;
2051
+ description = "Run `cabal2nix` on all `*.cabal` files to generate corresponding `.nix` files" ;
2038
2052
package = tools . cabal2nix-dir ;
2039
- entry = "${ hooks . cabal2nix . package } /bin/cabal2nix-dir" ;
2053
+ entry = "${ hooks . cabal2nix . package } /bin/cabal2nix-dir --outputFileName= ${ hooks . cabal2nix . settings . outputFilename } " ;
2040
2054
files = "\\ .cabal$" ;
2041
2055
after = [ "hpack" ] ;
2042
2056
} ;
Original file line number Diff line number Diff line change 2
2
3
3
writeScriptBin "cabal2nix-dir" ''#!/usr/bin/env bash
4
4
projectdir="$(pwd)"
5
- for cabalFile in "'' $@"; do
5
+ outputFileName=""
6
+ cabalFiles=()
7
+
8
+ for arg in "$@"; do
9
+ if [[ "$arg" == --outputFileName=* ]]; then
10
+ outputFileName="'' ${arg#--outputFileName=}"
11
+ else
12
+ cabalFiles+=("$arg")
13
+ fi
14
+ done
15
+
16
+ for cabalFile in "'' ${cabalFiles[@]}"; do
6
17
echo "$cabalFile"
7
18
dir="$(dirname $cabalFile)"
8
19
cd "$projectdir/$dir"
9
- ${ cabal2nix } /bin/cabal2nix --no-hpack . > default.nix
20
+ ${ cabal2nix } /bin/cabal2nix --no-hpack . > "$outputFileName"
10
21
done
11
22
''
You can’t perform that action at this time.
0 commit comments