From 94a3a5e00a6986d2520dee972c3235fc0d51f028 Mon Sep 17 00:00:00 2001 From: Jack Cummings Date: Sun, 24 Mar 2013 22:08:09 -0700 Subject: shntool-3.0.10 --- pkgs/applications/audio/shntool/default.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pkgs/applications/audio/shntool/default.nix (limited to 'pkgs/applications/audio/shntool') diff --git a/pkgs/applications/audio/shntool/default.nix b/pkgs/applications/audio/shntool/default.nix new file mode 100644 index 0000000000000..68fb8bfb14232 --- /dev/null +++ b/pkgs/applications/audio/shntool/default.nix @@ -0,0 +1,20 @@ +{ stdenv, fetchurl, flac }: + +stdenv.mkDerivation rec { + version = "3.0.10"; + name = "shntool-${version}"; + + 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"; + homepage = http://www.etree.org/shnutils/shntool/; + license = "GPLv2+"; + platforms = with stdenv.lib.platforms; linux; + }; +} -- cgit 1.4.1