nixpkgs/pkgs/applications/video/openshot-qt/libopenshot-audio.nix
Ryan Mulligan 809123e06b libsForQt5.libopenshot-audio: 0.1.4 -> 0.1.5
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 0.1.5 with grep in /nix/store/0a0pk23wn2jqnkc9h7jb0i0wp8b5zkzm-libopenshot-audio-0.1.5
- found 0.1.5 in filename of file in /nix/store/0a0pk23wn2jqnkc9h7jb0i0wp8b5zkzm-libopenshot-audio-0.1.5
- directory tree listing: https://gist.github.com/6096ee421bf911b453a5b862e61452ec
2018-03-20 11:51:32 -07:00

37 lines
1 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.5";
src = fetchFromGitHub {
owner = "OpenShot";
repo = "libopenshot-audio";
rev = "v${version}";
sha256 = "0rn87jxyfq1yip1lb2255l5ilkakkqg9rn0lr0h6dn2xrmlbmg8l";
};
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;
};
}