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! # 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: { cabal.mkDerivation (self: {
pname = "oeis"; pname = "oeis";
version = "0.3.5"; version = "0.3.6";
sha256 = "0r23mqbfvvvx6shzdclzfrqi8r95gxl93cih7ny7w7px3w5yc5x6"; sha256 = "1q7ywczm2d5inrjqgz3j8vfk5sj2yixvwdkzlfs2whd0gadbcfa0";
buildDepends = [ HTTP network ]; buildDepends = [ HTTP network networkUri ];
testDepends = [ HUnit testFramework testFrameworkHunit ]; testDepends = [ HUnit testFramework testFrameworkHunit ];
patchPhase = ''
sed -i -e 's|network *==.*|network|' oeis.cabal
'';
meta = { meta = {
description = "Interface to the Online Encyclopedia of Integer Sequences (OEIS)"; description = "Interface to the Online Encyclopedia of Integer Sequences (OEIS)";
license = self.stdenv.lib.licenses.bsd3; license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms; platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ]; maintainers = with self.stdenv.lib.maintainers; [ andres ];
}; };
}) })