c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
45 lines
737 B
Nix
45 lines
737 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, boost
|
|
, cmake
|
|
, ninja
|
|
, pkg-config
|
|
, sqlite
|
|
, zlib
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libdjinterop";
|
|
|
|
version = "unstable";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "xsco";
|
|
repo = "libdjinterop";
|
|
rev = "0.20.1";
|
|
hash = "sha256-/iXSRJVFPWqUTVz7z0BNWCq5LOqdNuTI+wx/34JAZfc=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
ninja
|
|
pkg-config
|
|
];
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
buildInputs = [
|
|
boost
|
|
sqlite
|
|
zlib
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/xsco/libdjinterop";
|
|
description = "C++ library for access to DJ record libraries";
|
|
license = licenses.lgpl3;
|
|
maintainers = with maintainers; [ benley ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|