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

20 lines
652 B
Nix
Raw Normal View History

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
2014-10-13 14:46:17 +04:00
{ cabal, HTTP, HUnit, network, networkUri, testFramework
, testFrameworkHunit
}:
2012-07-17 00:06:53 +04:00
cabal.mkDerivation (self: {
pname = "oeis";
2014-10-13 14:46:17 +04:00
version = "0.3.6";
sha256 = "1q7ywczm2d5inrjqgz3j8vfk5sj2yixvwdkzlfs2whd0gadbcfa0";
buildDepends = [ HTTP network networkUri ];
2013-07-01 13:04:04 +04:00
testDepends = [ HUnit testFramework testFrameworkHunit ];
2012-07-17 00:06:53 +04:00
meta = {
2013-07-01 13:04:04 +04:00
description = "Interface to the Online Encyclopedia of Integer Sequences (OEIS)";
2012-07-17 00:06:53 +04:00
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
2014-10-13 14:46:17 +04:00
maintainers = with self.stdenv.lib.maintainers; [ andres ];
2012-07-17 00:06:53 +04:00
};
})