nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 stdenv,
4 fetchFromGitHub,
5
6 boca,
7 smooth,
8 systemd,
9 wrapGAppsHook3,
10}:
11
12stdenv.mkDerivation (finalAttrs: {
13 pname = "freac";
14 version = "1.1.7";
15
16 src = fetchFromGitHub {
17 owner = "enzo1982";
18 repo = "freac";
19 rev = "v${finalAttrs.version}";
20 sha256 = "sha256-bHoRxxhSM7ipRkiBG7hEa1Iw8Z3tOHQ/atngC/3X1a4=";
21 };
22
23 buildInputs = [
24 boca
25 smooth
26 systemd
27 wrapGAppsHook3
28 ];
29
30 makeFlags = [
31 "prefix=$(out)"
32 ];
33
34 meta = {
35 description = "Audio converter and CD ripper with support for various popular formats and encoders";
36 license = lib.licenses.gpl2Plus;
37 homepage = "https://www.freac.org/";
38 platforms = lib.platforms.linux;
39 };
40})