1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-21 05:25:38 +00:00
nixpkgs/pkgs/development/libraries/haskell/dsp/default.nix

17 lines
418 B
Nix
Raw Normal View History

2014-03-17 11:27:08 +00:00
{ cabal, random }:
cabal.mkDerivation (self: {
pname = "dsp";
2014-03-19 10:45:12 +00:00
version = "0.2.3";
sha256 = "1h7y3b2gwbkq97lv6f9a4zssyqs422g5zj2bi9mq1a5fzy5i4v4v";
isLibrary = true;
isExecutable = true;
2014-03-17 11:27:08 +00:00
buildDepends = [ random ];
meta = {
homepage = "http://www.haskell.org/haskellwiki/DSP";
description = "Haskell Digital Signal Processing";
license = "GPL";
platforms = self.ghc.meta.platforms;
};
})