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

{ cabal, random }:

cabal.mkDerivation (self: {
  pname = "dsp";
  version = "0.2.3";
  sha256 = "1h7y3b2gwbkq97lv6f9a4zssyqs422g5zj2bi9mq1a5fzy5i4v4v";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [ random ];
  patchPhase = ''
    sed -i -e 's|random.*<1.1,|random,|' dsp.cabal
  '';
  meta = {
    homepage = "http://www.haskell.org/haskellwiki/DSP";
    description = "Haskell Digital Signal Processing";
    license = "GPL";
    platforms = self.ghc.meta.platforms;
  };
})