mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
shntool-3.0.10
This commit is contained in:
parent
54d81f1b6b
commit
94a3a5e00a
2 changed files with 22 additions and 0 deletions
20
pkgs/applications/audio/shntool/default.nix
Normal file
20
pkgs/applications/audio/shntool/default.nix
Normal file
|
@ -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;
|
||||
};
|
||||
}
|
|
@ -7762,6 +7762,8 @@ let
|
|||
guile = guile_1_8;
|
||||
};
|
||||
|
||||
shntool = callPackage ../applications/audio/shntool { };
|
||||
|
||||
sonic_visualiser = callPackage ../applications/audio/sonic-visualiser {
|
||||
inherit (pkgs.vamp) vampSDK;
|
||||
inherit (pkgs.xlibs) libX11;
|
||||
|
|
Loading…
Reference in a new issue