Skip to content
Snippets Groups Projects
ral.nix 991 B
Newer Older
Daniel Firth's avatar
Daniel Firth committed
{ mkDerivation, QuickCheck, adjunctions, base, bin, boring
, criterion, deepseq, distributive, fin, hashable
, indexed-traversable, lib, semigroupoids, vector
}:
mkDerivation {
  pname = "ral";
  version = "0.2.1";
  sha256 = "510fa3a1293a5ff04f605aabafe65e6bdb1a15b085d173ed9bfda317909edab8";
  revision = "2";
  editedCabalFile = "0s51sjv3npjmvi2d2i3x4qs427h7pa2gm0bwm6m34visk78jaypq";
  isLibrary = true;
  isExecutable = false;
  enableSeparateDataOutput = false;
  libraryHaskellDepends = [
    adjunctions base bin boring deepseq distributive fin hashable
    indexed-traversable QuickCheck semigroupoids
  ];
  benchmarkHaskellDepends = [ base criterion vector ];
  enableLibraryProfiling = false;
  enableExecutableProfiling = false;
  doHaddock = false;
  jailbreak = true;
  doCheck = false;
  doBenchmark = false;
  hyperlinkSource = false;
  homepage = "https://github.com/phadej/vec";
  description = "Random access lists";
  license = lib.licenses.gpl2Plus;
  broken = false;
}