cabal2nix-2.8.2: test/golden-test-cases/ip.nix.golden
{ mkDerivation, aeson, attoparsec, base, bytestring, criterion
, doctest, fetchurl, hashable, HUnit, primitive, QuickCheck
, quickcheck-classes, test-framework, test-framework-hunit
, test-framework-quickcheck2, text, vector
}:
mkDerivation {
pname = "ip";
version = "1.1.1";
src = fetchurl {
url = "http://example.org/";
sha256 = "abc";
};
libraryHaskellDepends = [
aeson attoparsec base bytestring hashable primitive text vector
];
testHaskellDepends = [
attoparsec base bytestring doctest HUnit QuickCheck
quickcheck-classes test-framework test-framework-hunit
test-framework-quickcheck2 text
];
benchmarkHaskellDepends = [
attoparsec base bytestring criterion text
];
homepage = "https://github.com/andrewthad/haskell-ip#readme";
description = "Library for IP and MAC addresses";
license = stdenv.lib.licenses.bsd3;
}