mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
52 lines
844 B
Nix
52 lines
844 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
|
|
, expat
|
|
, libcdio
|
|
, libcdio-paranoia
|
|
, libpulseaudio
|
|
, smooth
|
|
, uriparser
|
|
, zlib
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "BoCA";
|
|
version = "1.0.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "enzo1982";
|
|
repo = "boca";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-SP/rVt/8VoeUprwJIIMSIBvoC1Zein3F7MR2tqc2vd0=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
expat
|
|
libcdio
|
|
libcdio-paranoia
|
|
libpulseaudio
|
|
smooth
|
|
uriparser
|
|
zlib
|
|
];
|
|
|
|
makeFlags = [
|
|
"prefix=$(out)"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A component library used by the fre:ac audio converter";
|
|
license = licenses.gpl2Plus;
|
|
homepage = "https://github.com/enzo1982/boca";
|
|
maintainers = with maintainers; [ shamilton ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|