nixpkgs/pkgs/applications/audio/monkeys-audio/default.nix

21 lines
483 B
Nix
Raw Normal View History

{lib, stdenv, fetchurl}:
stdenv.mkDerivation rec {
version = "3.99-u4-b5";
pname = "monkeys-audio";
patches = [ ./buildfix.diff ];
src = fetchurl {
url = "https://deb-multimedia.org/pool/main/m/${pname}/${pname}_${version}.orig.tar.gz";
sha256 = "0kjfwzfxfx7f958b2b1kf8yj655lp0ppmn0sh57gbkjvj8lml7nz";
};
2014-01-28 17:11:00 +00:00
meta = with lib; {
description = "Lossless audio codec";
2014-01-28 17:11:00 +00:00
platforms = platforms.linux;
license = licenses.lgpl2;
maintainers = [ ];
2014-01-28 17:11:00 +00:00
};
}