aboutsummaryrefslogtreecommitdiff
path: root/nix-support/nixfmt.nix
blob: b51e26295488f00462e0ed884d1df43e45973c9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Copy of `nixfmt-rfc-style` vendored from `nixpkgs` master:
# https://github.com/NixOS/nixpkgs/blob/ab6071eb54cc9b66dda436111d4f569e4e56cbf4/pkgs/by-name/ni/nixfmt-rfc-style/package.nix
{
  haskell,
  haskellPackages,
  fetchFromGitHub,
}:
let
  inherit (haskell.lib.compose) justStaticExecutables;
  raw-pkg = haskellPackages.callPackage (
    {
      mkDerivation,
      base,
      cmdargs,
      directory,
      fetchzip,
      filepath,
      lib,
      megaparsec,
      mtl,
      parser-combinators,
      safe-exceptions,
      scientific,
      text,
      transformers,
      unix,
    }:
    mkDerivation {
      pname = "nixfmt";
      version = "0.6.0-unstable-2024-03-14";
      src = fetchFromGitHub {
        owner = "serokell";
        repo = "nixfmt";
        rev = "8d13b593fa8d8d6e5075f541f3231222a08e84df";
        hash = "sha256-HtXvzmfN4wk45qiKZ7V+/5WBV7jnTHfd7iBwF4XGl64=";
      };
      isLibrary = true;
      isExecutable = true;
      libraryHaskellDepends = [
        base
        megaparsec
        mtl
        parser-combinators
        scientific
        text
        transformers
      ];
      executableHaskellDepends = [
        base
        cmdargs
        directory
        filepath
        safe-exceptions
        text
        unix
      ];
      jailbreak = true;
      homepage = "https://github.com/serokell/nixfmt";
      description = "An opinionated formatter for Nix";
      license = lib.licenses.mpl20;
      mainProgram = "nixfmt";
    }
  ) { };
in
justStaticExecutables raw-pkg