packages feed

cabal2nix-2.16.0: test/golden-test-cases/pell.nix.golden

{ mkDerivation, arithmoi, base, Cabal, cabal-test-quickcheck
, containers, lib, primes, QuickCheck
}:
mkDerivation {
  pname = "pell";
  version = "0.1.1.0";
  sha256 = "deadbeef";
  libraryHaskellDepends = [ arithmoi base containers ];
  testHaskellDepends = [
    arithmoi base Cabal cabal-test-quickcheck containers primes
    QuickCheck
  ];
  homepage = "https://github.com/brunjlar/pell";
  description = "Package to solve the Generalized Pell Equation";
  license = lib.licenses.mit;
}