summary refs log tree commit diff
path: root/pkgs/applications/audio/shntool
diff options
context:
space:
mode:
authorJack Cummings <jack@mudshark.org>2013-03-24 22:08:09 -0700
committerJack Cummings <jack@mudshark.org>2013-03-24 22:08:09 -0700
commit94a3a5e00a6986d2520dee972c3235fc0d51f028 (patch)
treeaf6817655cfa63c8820528d3f3f998f7e92e5138 /pkgs/applications/audio/shntool
parent54d81f1b6b0abe5528c89b037e97593a84bc3f56 (diff)
downloadnixpkgs-94a3a5e00a6986d2520dee972c3235fc0d51f028.tar
nixpkgs-94a3a5e00a6986d2520dee972c3235fc0d51f028.tar.gz
nixpkgs-94a3a5e00a6986d2520dee972c3235fc0d51f028.tar.bz2
nixpkgs-94a3a5e00a6986d2520dee972c3235fc0d51f028.tar.lz
nixpkgs-94a3a5e00a6986d2520dee972c3235fc0d51f028.tar.xz
nixpkgs-94a3a5e00a6986d2520dee972c3235fc0d51f028.tar.zst
nixpkgs-94a3a5e00a6986d2520dee972c3235fc0d51f028.zip
shntool-3.0.10
Diffstat (limited to 'pkgs/applications/audio/shntool')
-rw-r--r--pkgs/applications/audio/shntool/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/applications/audio/shntool/default.nix b/pkgs/applications/audio/shntool/default.nix
new file mode 100644
index 00000000000..68fb8bfb142
--- /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;
+  };
+}