nixpkgs/pkgs/development/libraries/libgroove/default.nix

34 lines
1019 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, fetchpatch, cmake, ffmpeg_3, SDL2, chromaprint, libebur128 }:
2015-06-14 21:30:02 +01:00
stdenv.mkDerivation rec {
version = "4.3.0";
pname = "libgroove";
2015-06-14 21:30:02 +01:00
src = fetchFromGitHub {
owner = "andrewrk";
repo = "libgroove";
2019-09-09 00:38:31 +01:00
rev = version;
2015-06-14 21:30:02 +01:00
sha256 = "1la9d9kig50mc74bxvhx6hzqv0nrci9aqdm4k2j4q0s1nlfgxipd";
};
patches = [
./no-warnings-as-errors.patch
(fetchpatch {
name = "update-for-ffmpeg-3.0.patch";
url = "https://aur.archlinux.org/cgit/aur.git/plain/0001-update-for-ffmpeg-3.0.patch?h=libgroove&id=a9f3bd2a5afd3227733414a5d54c7a2aa0a1249e";
sha256 = "0800drk9df1kwbv80f2ffv77xk888249fk0d961rp2a305hvyrk0";
})
];
nativeBuildInputs = [ cmake ];
buildInputs = [ ffmpeg_3 SDL2 chromaprint libebur128 ];
2015-06-14 21:30:02 +01:00
meta = with lib; {
2015-06-14 21:30:02 +01:00
description = "Streaming audio processing library";
homepage = "https://github.com/andrewrk/libgroove";
2015-06-14 21:30:02 +01:00
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ andrewrk ];
2015-06-14 21:30:02 +01:00
};
}