nixpkgs/pkgs/development/libraries/aubio/default.nix
Bjørn Forsman 28ac782583 Some description fixes
There are many more packages to fix, this is just a start.

Rules:
 * Don't repeat the package name (not always that easy...)
 * Start with capital letter
 * Don't end with full stop
 * Don't start with "The ..." or "A ..."

I've also added descriptions to some packages and rewritten others.
2013-10-05 19:36:23 +02:00

26 lines
634 B
Nix

{ stdenv, fetchurl, pkgconfig, fftw, libsndfile, libsamplerate
, python, alsaLib, jackaudio }:
stdenv.mkDerivation rec {
name = "aubio-0.3.2";
src = fetchurl {
url = "http://aubio.org/pub/${name}.tar.gz";
sha256 = "1k8j2m8wdpa54hvrqy6nqfcx42x6nwa77hi3ym0n22k192q8f4yw";
};
buildInputs =
[ pkgconfig fftw libsndfile libsamplerate python
# optional:
alsaLib jackaudio
];
meta = {
description = "Library for audio labelling";
homepage = http://aubio.org/;
license = "GPLv2";
maintainers = [ stdenv.lib.maintainers.marcweber ];
platforms = stdenv.lib.platforms.linux;
};
}