nixpkgs/pkgs/development/libraries/haskell/oeis/default.nix

16 lines
547 B
Nix
Raw Normal View History

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;
maintainers = [ self.stdenv.lib.maintainers.andres ];
2012-07-16 20:06:53 +00:00
};
})