lol
1{ lib, stdenv, fetchurl, flac }:
2
3stdenv.mkDerivation {
4 version = "3.0.10";
5 pname = "shntool";
6
7 src = fetchurl {
8 url = "http://www.etree.org/shnutils/shntool/dist/src/shntool-3.0.10.tar.gz";
9 sha256 = "00i1rbjaaws3drkhiczaign3lnbhr161b7rbnjr8z83w8yn2wc3l";
10 };
11
12 buildInputs = [ flac ];
13
14 meta = {
15 description = "Multi-purpose WAVE data processing and reporting utility";
16 homepage = "http://www.etree.org/shnutils/shntool/";
17 license = lib.licenses.gpl2Plus;
18 platforms = lib.platforms.all;
19 maintainers = with lib.maintainers; [ jcumming ];
20 };
21}