aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/audio/shntool/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/audio/shntool/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/audio/shntool/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/audio/shntool/default.nix b/nixpkgs/pkgs/applications/audio/shntool/default.nix
new file mode 100644
index 00000000000..e3bfc60a40a
--- /dev/null
+++ b/nixpkgs/pkgs/applications/audio/shntool/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchurl, flac }:
+
+stdenv.mkDerivation {
+ version = "3.0.10";
+ pname = "shntool";
+
+ 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 = stdenv.lib.licenses.gpl2Plus;
+ platforms = stdenv.lib.platforms.all;
+ maintainers = with stdenv.lib.maintainers; [ jcumming ];
+ };
+}