mirror of
https://github.com/unclechu/gRPC-haskell.git
synced 2024-11-16 16:19:42 +01:00
926a9d90cf
So that applied patches always work
16 lines
548 B
Nix
16 lines
548 B
Nix
{ mkDerivation, base, containers, criterion, deepseq, ghc-prim
|
|
, hspec, lib, tagged
|
|
}:
|
|
mkDerivation {
|
|
pname = "data-diverse";
|
|
version = "4.7.0.0";
|
|
sha256 = "sha256-w82WWNWbShoYYtDFvJHgQUb1vxEehGmgUOpq4SZaizE=";
|
|
libraryHaskellDepends = [
|
|
base containers deepseq ghc-prim tagged
|
|
];
|
|
testHaskellDepends = [ base hspec tagged ];
|
|
benchmarkHaskellDepends = [ base criterion ];
|
|
homepage = "https://github.com/louispan/data-diverse#readme";
|
|
description = "Extensible records and polymorphic variants";
|
|
license = lib.licenses.bsd3;
|
|
}
|