mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
ecasound: init at 2.9.1
This commit is contained in:
parent
843cfd6741
commit
26abed2222
32
pkgs/applications/audio/ecasound/default.nix
Normal file
32
pkgs/applications/audio/ecasound/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ stdenv
|
||||
, fetchurl
|
||||
, alsaLib
|
||||
, audiofile
|
||||
, libjack2
|
||||
, liblo
|
||||
, liboil
|
||||
, libsamplerate
|
||||
, libsndfile
|
||||
, lilv
|
||||
, lv2
|
||||
}:
|
||||
|
||||
# TODO: fix readline, ncurses, lilv, liblo, liboil and python. See configure log.
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "ecasound-${version}";
|
||||
version = "2.9.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://ecasound.seul.org/download/ecasound-${version}.tar.gz";
|
||||
sha256 = "1wyws3xc4f9pglrrqv6k9137sarv4asizqrxz8h0dn44rnzfiz1r";
|
||||
};
|
||||
|
||||
buildInputs = [ alsaLib audiofile libjack2 liblo liboil libsamplerate libsndfile lilv lv2 ];
|
||||
|
||||
meta = {
|
||||
description = "Ecasound is a software package designed for multitrack audio processing";
|
||||
license = with stdenv.lib.licenses; [ gpl2 lgpl21 ];
|
||||
homepage = http://nosignal.fi/ecasound/;
|
||||
};
|
||||
}
|
@ -824,6 +824,8 @@ in
|
||||
|
||||
dynamic-colors = callPackage ../tools/misc/dynamic-colors { };
|
||||
|
||||
ecasound = callPackage ../applications/audio/ecasound { };
|
||||
|
||||
edac-utils = callPackage ../os-specific/linux/edac-utils { };
|
||||
|
||||
eggdrop = callPackage ../tools/networking/eggdrop { };
|
||||
|
Loading…
Reference in New Issue
Block a user