about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/network-fancy/default.nix
blob: 8e0cf7578345455e2f7e8756e4a467550e74259e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ cabal }:

cabal.mkDerivation (self: {
  pname = "network-fancy";
  version = "0.1.5.2";
  sha256 = "039yrrir17sphkzarwl7hncj7fb4x471mh2lvpqixl3a6nij141c";
  meta = {
    homepage = "http://github.com/taruti/network-fancy";
    description = "Networking support with a cleaner API";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
  preConfigure = ''substituteInPlace Setup.hs --replace '-> rt' '-> return ()' '';
})