nixpkgs/pkgs/applications/audio/shntool/default.nix

22 lines
594 B
Nix
Raw Normal View History

2013-03-25 05:08:09 +00:00
{ stdenv, fetchurl, flac }:
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
2013-03-25 05:08:09 +00:00
version = "3.0.10";
pname = "shntool";
2013-03-25 05:08:09 +00:00
src = fetchurl {
url = http://www.etree.org/shnutils/shntool/dist/src/shntool-3.0.10.tar.gz;
sha256 = "00i1rbjaaws3drkhiczaign3lnbhr161b7rbnjr8z83w8yn2wc3l";
};
buildInputs = [ flac ];
meta = {
description = "Multi-purpose WAVE data processing and reporting utility";
2013-03-25 05:08:09 +00:00
homepage = http://www.etree.org/shnutils/shntool/;
license = stdenv.lib.licenses.gpl2Plus;
2013-04-01 05:09:17 +00:00
platforms = stdenv.lib.platforms.all;
maintainers = with stdenv.lib.maintainers; [ jcumming ];
2013-03-25 05:08:09 +00:00
};
}