2021-01-15 13:21:58 +00:00
|
|
|
{ lib, stdenv, fetchurl, flac }:
|
2013-03-25 05:08:09 +00:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2013-03-25 05:08:09 +00:00
|
|
|
version = "3.0.10";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "shntool";
|
2013-03-25 05:08:09 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "http://www.etree.org/shnutils/shntool/dist/src/shntool-3.0.10.tar.gz";
|
2013-03-25 05:08:09 +00:00
|
|
|
sha256 = "00i1rbjaaws3drkhiczaign3lnbhr161b7rbnjr8z83w8yn2wc3l";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ flac ];
|
|
|
|
|
|
|
|
meta = {
|
2016-06-20 11:53:46 +01:00
|
|
|
description = "Multi-purpose WAVE data processing and reporting utility";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.etree.org/shnutils/shntool/";
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.gpl2Plus;
|
|
|
|
platforms = lib.platforms.all;
|
|
|
|
maintainers = with lib.maintainers; [ jcumming ];
|
2013-03-25 05:08:09 +00:00
|
|
|
};
|
|
|
|
}
|