Skip to content
Snippets Groups Projects
Commit dd11cb90 authored by Daniel Firth's avatar Daniel Firth
Browse files

fourmolu: remove

parent f8f598ab
No related merge requests found
......@@ -151,11 +151,6 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "finite-field" "0.10.0"
, callHackage "first-class-families" "0.8.0.1"
, callHackage "foldl" "1.4.12"
, callCabal2nix
"fourmolu"
"https://github.com/fourmolu/fourmolu"
(Some "c6d7156b5f3e8287960a76e777c40b62ebfdbcb3")
(None Text)
, callHackage "foundation" "0.0.29"
, callHackage "generic-lens-core" "2.2.1.0"
, callHackage "generic-lens-lite" "0.1"
......
......@@ -139,8 +139,6 @@ final: prev: with pkgs.haskell.lib; {
foundation = prev.callPackage (./pkgs/foundation.nix) { };
fourmolu = prev.callPackage (./pkgs/fourmolu.nix) { };
generic-lens-core = prev.callPackage (./pkgs/generic-lens-core.nix) { };
generic-lens-lite = prev.callPackage (./pkgs/generic-lens-lite.nix) { };
......
{ mkDerivation, aeson, ansi-terminal, array, base, bytestring
, Cabal, containers, Diff, directory, dlist, exceptions, fetchgit
, filepath, ghc-lib-parser, gitrev, hspec, hspec-discover
, hspec-megaparsec, lib, megaparsec, MemoTrie, mtl
, optparse-applicative, path, path-io, pretty, process, QuickCheck
, syb, template-haskell, temporary, text, th-lift-instances, yaml
}:
mkDerivation {
pname = "fourmolu";
version = "0.8.2.0";
src = fetchgit {
url = "https://github.com/fourmolu/fourmolu";
sha256 = "0y4gdwimyvh6ha86hwjp62b9cnjwsb0svd3jcwjjaffcikwalbvs";
rev = "c6d7156b5f3e8287960a76e777c40b62ebfdbcb3";
fetchSubmodules = true;
};
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson ansi-terminal array base bytestring Cabal containers Diff
directory dlist exceptions filepath ghc-lib-parser megaparsec
MemoTrie mtl syb template-haskell text th-lift-instances yaml
];
executableHaskellDepends = [
base containers directory filepath ghc-lib-parser gitrev
optparse-applicative text yaml
];
testHaskellDepends = [
base containers Diff directory filepath ghc-lib-parser hspec
hspec-megaparsec megaparsec path path-io pretty process QuickCheck
temporary text
];
testToolDepends = [ hspec-discover ];
doHaddock = false;
jailbreak = true;
doCheck = false;
hyperlinkSource = false;
homepage = "https://github.com/parsonsmatt/fourmolu";
description = "A formatter for Haskell source code";
license = lib.licenses.bsd3;
mainProgram = "fourmolu";
}
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment