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

22 lines
582 B
Nix
Raw Normal View History

2021-01-15 13:21:58 +00:00
{ lib, stdenv, fetchurl, flac }:
2013-03-25 05:08:09 +00:00
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";
2013-03-25 05:08:09 +00:00
sha256 = "00i1rbjaaws3drkhiczaign3lnbhr161b7rbnjr8z83w8yn2wc3l";
};
buildInputs = [ flac ];
meta = {
description = "Multi-purpose WAVE data processing and reporting utility";
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
};
}