Adding lmms: Linux MultiMedia Studio
svn path=/nixpkgs/trunk/; revision=26925
This commit is contained in:
parent
b150276393
commit
3cfe938b0e
23
pkgs/applications/audio/lmms/default.nix
Normal file
23
pkgs/applications/audio/lmms/default.nix
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{ stdenv, fetchurl, SDL, alsaLib, cmake, fftw, jackaudio, libogg,
|
||||||
|
libsamplerate, libsndfile, pkgconfig, pulseaudio, qt4 }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "lmms-${version}";
|
||||||
|
version = "0.4.10";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/lmms/${name}.tar.bz2";
|
||||||
|
sha256 = "035cqmxcbr9ipnicdv5l7h05q2hqbavxkbaxyq06ppnv2y7fxwrb";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ SDL alsaLib cmake fftw jackaudio libogg
|
||||||
|
libsamplerate libsndfile pkgconfig pulseaudio qt4 ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Linux MultiMedia Studio";
|
||||||
|
homepage = "http://lmms.sourceforge.net";
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = [ maintainers.goibhniu ];
|
||||||
|
};
|
||||||
|
}
|
@ -6464,6 +6464,8 @@ let
|
|||||||
inherit (gnome) libglade gtk;
|
inherit (gnome) libglade gtk;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
lmms = callPackage ../applications/audio/lmms { };
|
||||||
|
|
||||||
lxdvdrip = callPackage ../applications/video/lxdvdrip { };
|
lxdvdrip = callPackage ../applications/video/lxdvdrip { };
|
||||||
|
|
||||||
lynx = callPackage ../applications/networking/browsers/lynx { };
|
lynx = callPackage ../applications/networking/browsers/lynx { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user