1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/haskell/network-fancy/default.nix
2014-08-24 11:33:19 +01:00

15 lines
461 B
Nix

{ 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 ()' '';
})