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

16 lines
547 B
Nix
Raw Normal View History

2013-07-01 11:04:04 +02:00
{ cabal, HTTP, HUnit, network, testFramework, testFrameworkHunit }:
2012-07-16 22:06:53 +02:00
cabal.mkDerivation (self: {
pname = "oeis";
2013-07-04 17:38:56 +02:00
version = "0.3.4";
sha256 = "15xn7cybk43lk8wjd22l3zwvkyrmlixpfyrxsy3rnvh0vmn0r25d";
2012-07-16 22:06:53 +02:00
buildDepends = [ HTTP network ];
2013-07-01 11:04:04 +02:00
testDepends = [ HUnit testFramework testFrameworkHunit ];
2012-07-16 22:06:53 +02:00
meta = {
2013-07-01 11:04:04 +02:00
description = "Interface to the Online Encyclopedia of Integer Sequences (OEIS)";
2012-07-16 22:06:53 +02:00
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
2012-07-16 22:06:53 +02:00
};
})