nixpkgs/pkgs/development/libraries/wavpack/default.nix

24 lines
609 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, libiconv }:
2015-02-17 12:29:04 +00:00
stdenv.mkDerivation rec {
name = "wavpack-${version}";
2016-08-05 09:36:15 +01:00
version = "4.80.0";
2015-02-17 12:29:04 +00:00
enableParallelBuilding = true;
buildInputs = stdenv.lib.optional stdenv.isDarwin libiconv;
2015-02-17 12:29:04 +00:00
src = fetchurl {
url = "http://www.wavpack.com/${name}.tar.bz2";
2016-08-05 09:36:15 +01:00
sha256 = "1sbbwvqixg87h02avg0d5r64mpjz8cmhcc6j3s9wmlbvbykjw63r";
2015-02-17 12:29:04 +00:00
};
meta = with stdenv.lib; {
description = "Hybrid audio compression format";
homepage = http://www.wavpack.com/;
license = licenses.bsd3;
2015-03-28 19:34:52 +00:00
platforms = platforms.unix;
2015-02-17 12:29:04 +00:00
maintainers = with maintainers; [ codyopel ];
};
}