3
0
Fork 0
forked from mirrors/nixpkgs

haskell-oeis: update to version 0.3.6

This commit is contained in:
Peter Simons 2014-10-13 12:46:17 +02:00
parent f8fd9e817a
commit 24f716d4bd

View file

@ -1,20 +1,19 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, HTTP, HUnit, network, testFramework, testFrameworkHunit }:
{ cabal, HTTP, HUnit, network, networkUri, testFramework
, testFrameworkHunit
}:
cabal.mkDerivation (self: {
pname = "oeis";
version = "0.3.5";
sha256 = "0r23mqbfvvvx6shzdclzfrqi8r95gxl93cih7ny7w7px3w5yc5x6";
buildDepends = [ HTTP network ];
version = "0.3.6";
sha256 = "1q7ywczm2d5inrjqgz3j8vfk5sj2yixvwdkzlfs2whd0gadbcfa0";
buildDepends = [ HTTP network networkUri ];
testDepends = [ HUnit testFramework testFrameworkHunit ];
patchPhase = ''
sed -i -e 's|network *==.*|network|' oeis.cabal
'';
meta = {
description = "Interface to the Online Encyclopedia of Integer Sequences (OEIS)";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
maintainers = with self.stdenv.lib.maintainers; [ andres ];
};
})