Skip to content
Snippets Groups Projects
heapwords.nix 765 B
Newer Older
Daniel Firth's avatar
Daniel Firth committed
{ mkDerivation, array, base, bytestring, containers, fetchzip
, ghc-prim, lib, text, time, vector
}:
mkDerivation {
  pname = "heapwords";
Daniel Firth's avatar
Daniel Firth committed
  src = fetchzip {
    url = "https://chap.intersectmbo.org/package/heapwords-0.1.0.2.tar.gz";
Daniel Firth's avatar
Daniel Firth committed
    sha256 = "0h5vmz957a4nzwjl5m7s82zms2f1g4imbggxph30l0lwgxhcy9m8";
  isLibrary = true;
  isExecutable = false;
  enableSeparateDataOutput = false;
  libraryHaskellDepends = [
    array base bytestring containers ghc-prim text time vector
Daniel Firth's avatar
Daniel Firth committed
  enableLibraryProfiling = true;
  enableExecutableProfiling = true;
  doHaddock = true;
  jailbreak = true;
  doCheck = false;
  doBenchmark = false;
  hyperlinkSource = false;
  description = "Heapwords";
  license = lib.licenses.asl20;
  broken = false;