anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / development / haskell-modules / cabal2nix-unstable.nix
blob3e925417d644e2393e9935463851cb29218ef2e9
1 # This file defines cabal2nix-unstable, used by maintainers/scripts/haskell/regenerate-hackage-packages.sh.
2 { mkDerivation, aeson, ansi-wl-pprint, base, bytestring, Cabal
3 , containers, deepseq, directory, distribution-nixpkgs, fetchzip
4 , filepath, hackage-db, hopenssl, hpack, language-nix, lens, lib
5 , monad-par, monad-par-extras, mtl, optparse-applicative, pretty
6 , process, split, tasty, tasty-golden, text, time, transformers
7 , yaml
8 }:
9 mkDerivation {
10   pname = "cabal2nix";
11   version = "unstable-2024-10-17";
12   src = fetchzip {
13     url = "https://github.com/NixOS/cabal2nix/archive/b8eb82f8bc907b42dfb463cab62e49fbe2fff997.tar.gz";
14     sha256 = "1fxqigr002ssgz1l62rc7k04q4q0hwcl2wqy7l2shylxqf7yfcd6";
15   };
16   postUnpack = "sourceRoot+=/cabal2nix; echo source root reset to $sourceRoot";
17   isLibrary = true;
18   isExecutable = true;
19   libraryHaskellDepends = [
20     aeson ansi-wl-pprint base bytestring Cabal containers deepseq
21     directory distribution-nixpkgs filepath hackage-db hopenssl hpack
22     language-nix lens optparse-applicative pretty process split text
23     time transformers yaml
24   ];
25   executableHaskellDepends = [
26     aeson base bytestring Cabal containers directory
27     distribution-nixpkgs filepath hopenssl language-nix lens monad-par
28     monad-par-extras mtl optparse-applicative pretty
29   ];
30   testHaskellDepends = [
31     base Cabal containers directory filepath language-nix lens pretty
32     process tasty tasty-golden
33   ];
34   preCheck = ''
35     export PATH="$PWD/dist/build/cabal2nix:$PATH"
36     export HOME="$TMPDIR/home"
37   '';
38   homepage = "https://github.com/nixos/cabal2nix#readme";
39   description = "Convert Cabal files into Nix build instructions";
40   license = lib.licenses.bsd3;