depot/third_party/nixpkgs/pkgs/applications/audio/freac/default.nix
Default email 634fe97655 Project import generated by Copybara.
GitOrigin-RevId: 09c38c29f2c719cd76ca17a596c2fdac9e186ceb
2021-07-03 00:11:41 -03:00

38 lines
640 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, boca
, smooth
, systemd
}:
stdenv.mkDerivation rec {
pname = "freac";
version = "1.1.5";
src = fetchFromGitHub {
owner = "enzo1982";
repo = "freac";
rev = "v${version}";
sha256 = "sha256-cRmN9D/+FLiXqZW/PYhw61EoZuL3y61YtQ/ZNjnhfmY=";
};
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;
};
}