{ mkDerivation, arithmoi, base, Cabal, cabal-test-quickcheck , containers, fetchurl, primes, QuickCheck }: mkDerivation { pname = "pell"; version = "0.1.1.0"; src = fetchurl { url = "http://example.org/"; sha256 = "abc"; }; 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 = stdenv.lib.licenses.mit; }