2013-07-01 09:04:04 +00:00
|
|
|
{ cabal, HTTP, HUnit, network, testFramework, testFrameworkHunit }:
|
2012-07-16 20:06:53 +00:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "oeis";
|
2013-07-08 09:53:10 +00:00
|
|
|
version = "0.3.5";
|
|
|
|
sha256 = "0r23mqbfvvvx6shzdclzfrqi8r95gxl93cih7ny7w7px3w5yc5x6";
|
2012-07-16 20:06:53 +00:00
|
|
|
buildDepends = [ HTTP network ];
|
2013-07-01 09:04:04 +00:00
|
|
|
testDepends = [ HUnit testFramework testFrameworkHunit ];
|
2012-07-16 20:06:53 +00:00
|
|
|
meta = {
|
2013-07-01 09:04:04 +00:00
|
|
|
description = "Interface to the Online Encyclopedia of Integer Sequences (OEIS)";
|
2012-07-16 20:06:53 +00:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 22:36:36 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-07-16 20:06:53 +00:00
|
|
|
};
|
|
|
|
})
|