36 lines
1021 B
Nix
36 lines
1021 B
Nix
{ stdenv, fetchFromGitHub, pkgconfig, cmake, doxygen, alsaLib , libX11, libXft, libXrandr, libXinerama, libXext, libXcursor }:
|
|
|
|
with stdenv.lib;
|
|
stdenv.mkDerivation rec {
|
|
pname = "libopenshot-audio";
|
|
version = "0.1.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "OpenShot";
|
|
repo = "libopenshot-audio";
|
|
rev = "v${version}";
|
|
sha256 = "1fvp6nmf30xzkmcznakh8dv5vn9d7nq051pqcqv638hsfppkmcrl";
|
|
};
|
|
|
|
nativeBuildInputs =
|
|
[ pkgconfig cmake doxygen ];
|
|
|
|
buildInputs =
|
|
[ alsaLib libX11 libXft libXrandr libXinerama libXext libXcursor ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
homepage = http://openshot.org/;
|
|
description = "High-quality sound editing library";
|
|
longDescription = ''
|
|
OpenShot Audio Library (libopenshot-audio) is a program that allows the
|
|
high-quality editing and playback of audio, and is based on the amazing
|
|
JUCE library.
|
|
'';
|
|
license = with licenses; gpl3Plus;
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|