mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
dsp: add haskell pkg
This commit is contained in:
parent
14af15dbff
commit
edf1c8ce0f
14
pkgs/development/libraries/haskell/dsp/default.nix
Normal file
14
pkgs/development/libraries/haskell/dsp/default.nix
Normal file
@ -0,0 +1,14 @@
|
||||
{ cabal, random }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "dsp";
|
||||
version = "0.2.2";
|
||||
sha256 = "0vb71z8iky3xl40b9d79z7krq960ykcgn3y8lks3wzgiabbh2d89";
|
||||
buildDepends = [ random ];
|
||||
meta = {
|
||||
homepage = "http://www.haskell.org/haskellwiki/DSP";
|
||||
description = "Haskell Digital Signal Processing";
|
||||
license = "GPL";
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
@ -1000,6 +1000,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
|
||||
|
||||
DSH = callPackage ../development/libraries/haskell/DSH {};
|
||||
|
||||
dsp = callPackage ../development/libraries/haskell/dsp {};
|
||||
|
||||
dstring = callPackage ../development/libraries/haskell/dstring {};
|
||||
|
||||
dualTree = callPackage ../development/libraries/haskell/dual-tree {};
|
||||
|
Loading…
Reference in New Issue
Block a user