summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/oeis/default.nix
blob: b58df3be31486d1bebc6e9c90b2841d06f63e043 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# This file was auto-generated by cabal2nix. Please do NOT edit manually!

{ cabal, HTTP, HUnit, network, testFramework, testFrameworkHunit }:

cabal.mkDerivation (self: {
  pname = "oeis";
  version = "0.3.5";
  sha256 = "0r23mqbfvvvx6shzdclzfrqi8r95gxl93cih7ny7w7px3w5yc5x6";
  buildDepends = [ HTTP network ];
  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 ];
  };
})