mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
wavpack: add package
This commit is contained in:
parent
3dbde25855
commit
1435e69758
19
pkgs/development/libraries/wavpack/default.nix
Normal file
19
pkgs/development/libraries/wavpack/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "wavpack-${version}";
|
||||
version = "4.70.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.wavpack.com/${name}.tar.bz2";
|
||||
sha256 = "191h8hv8qk72hfh1crg429i9yq3cminwqb249sy9zadbn1wy7b9c";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Hybrid audio compression format";
|
||||
homepage = http://www.wavpack.com/;
|
||||
license = licenses.bsd3;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ codyopel ];
|
||||
};
|
||||
}
|
@ -7416,6 +7416,8 @@ let
|
||||
libpng = libpng12;
|
||||
};
|
||||
|
||||
wavpack = callPackage ../development/libraries/wavpack { };
|
||||
|
||||
wayland = callPackage ../development/libraries/wayland { };
|
||||
|
||||
webkit = webkitgtk;
|
||||
|
Loading…
Reference in New Issue
Block a user