39 lines
640 B
Nix
39 lines
640 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
|
|
, boca
|
|
, smooth
|
|
, systemd
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "freac";
|
|
version = "1.1.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "enzo1982";
|
|
repo = "freac";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-PDFc/RhxIe6M3lfVHE1QmJnu5Sy+q/yrXrXPV/8X51o=";
|
|
};
|
|
|
|
buildInputs = [
|
|
boca
|
|
smooth
|
|
systemd
|
|
];
|
|
|
|
makeFlags = [
|
|
"prefix=$(out)"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "The fre:ac audio converter project";
|
|
license = licenses.gpl2Plus;
|
|
homepage = "https://www.freac.org/";
|
|
maintainers = with maintainers; [ shamilton ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|