nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 mkDerivation,
3 fetchFromGitHub,
4 array,
5 base,
6 binary,
7 bytestring,
8 containers,
9 deepseq,
10 directory,
11 filepath,
12 ghci,
13 lib,
14 network,
15}:
16mkDerivation {
17 pname = "iserv-proxy";
18 version = "9.3-unstable-2025-10-30";
19
20 # https://github.com/stable-haskell/iserv-proxy/pull/1
21 src = fetchFromGitHub {
22 owner = "stable-haskell";
23 repo = "iserv-proxy";
24 rev = "bbee090fc67bb5cc6ad4508fa5def560b7672591";
25 hash = "sha256-2aCGboNCF602huvmbyTcfhe6s+D4/n/NlOefd0c0SC0=";
26 };
27
28 isLibrary = true;
29 isExecutable = true;
30 libraryHaskellDepends = [
31 array
32 base
33 binary
34 bytestring
35 containers
36 deepseq
37 directory
38 filepath
39 ghci
40 network
41 ];
42 executableHaskellDepends = [
43 base
44 binary
45 bytestring
46 directory
47 filepath
48 ghci
49 network
50 ];
51 description = "iserv allows GHC to delegate Template Haskell computations";
52 license = lib.licenses.bsd3;
53}