summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/sample-frame/default.nix
blob: f8acbf1fda8394490fd4302d40b5ba145d142993 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ cabal, QuickCheck, storableRecord }:

cabal.mkDerivation (self: {
  pname = "sample-frame";
  version = "0.0.2";
  sha256 = "1k1fyslgw5vvn9a38mhp7c9j1xxf75ys010rcn2vr3pm6aj868sx";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [ QuickCheck storableRecord ];
  meta = {
    homepage = "http://www.haskell.org/haskellwiki/Synthesizer";
    description = "Handling of samples in an (audio) signal";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})