1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-22 16:26:48 -04:00
nixpkgs/pkgs/development/libraries/haskell/iproute/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

20 lines
539 B
Nix

{ cabal, appar, byteorder, doctest, hspec, network, QuickCheck
, safe
}:
cabal.mkDerivation (self: {
pname = "iproute";
version = "1.2.11";
sha256 = "14f96sb41f5m14186900rz84vwv7idjiylp8m5nsm6gganvh4sh4";
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;
};
})