nixpkgs/pkgs/development/libraries/haskell/iproute/default.nix
Peter Simons a30df95691 Re-generate all Haskell packages with the latest version of cabal2nix.
This change brings support for building and running the regressions test suites.
2013-02-25 00:32:40 +01:00

20 lines
539 B
Nix

{ cabal, appar, byteorder, doctest, hspec, network, QuickCheck
, Safe
}:
cabal.mkDerivation (self: {
pname = "iproute";
version = "1.2.10";
sha256 = "1ni91llvq1mfdsjmw1laqhk964y4vlpyk5s25j8klsfn27mq6c68";
buildDepends = [ appar byteorder network ];
testDepends = [
appar byteorder doctest hspec network QuickCheck Safe
];
meta = {
homepage = "http://www.mew.org/~kazu/proj/iproute/";
description = "IP Routing Table";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})