d655854b8e
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/libopenshot-audio/versions. These checks were done: - built on NixOS - Warning: no invocation of /nix/store/vb21d43jjccq86v505dhqhrb7rfaxv6q-libopenshot-audio-0.1.6/bin/openshot-audio-test-sound had a zero exit code or showed the expected version - 0 of 1 passed binary check by having a zero exit code. - 0 of 1 passed binary check by having the new version present in output. - found 0.1.6 with grep in /nix/store/vb21d43jjccq86v505dhqhrb7rfaxv6q-libopenshot-audio-0.1.6 - directory tree listing: https://gist.github.com/4efbc53208f322153ba4881b6b6eefb9 - du listing: https://gist.github.com/e3a2a71be83163ed2ecdc2aaa0800d83
37 lines
1.0 KiB
Nix
37 lines
1.0 KiB
Nix
{ stdenv, fetchFromGitHub, pkgconfig, cmake, doxygen, alsaLib
|
|
, libX11, libXft, libXrandr, libXinerama, libXext, libXcursor }:
|
|
|
|
with stdenv.lib;
|
|
stdenv.mkDerivation rec {
|
|
name = "libopenshot-audio-${version}";
|
|
version = "0.1.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "OpenShot";
|
|
repo = "libopenshot-audio";
|
|
rev = "v${version}";
|
|
sha256 = "0cf8wx6a8ba4rhfby6abpr8ks2a0hxj76mas9751ihz59w1vdisy";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|