about summary refs log tree commit diff
path: root/pkgs/applications/audio/freac
diff options
context:
space:
mode:
authorSCOTT-HAMILTON <sgn.hamilton+github@protonmail.com>2021-03-05 12:21:33 +0100
committerSCOTT-HAMILTON <sgn.hamilton+github@protonmail.com>2021-03-05 12:35:02 +0100
commit1080893ca75af70e346699b37abd65f177941515 (patch)
tree2fabba748fbd151fbd0d4a1c3df1e7d2102bad69 /pkgs/applications/audio/freac
parent297804b130119bc8ddf40d38bba78550620df7ef (diff)
freac: init at 1.1.3
Diffstat (limited to 'pkgs/applications/audio/freac')
-rw-r--r--pkgs/applications/audio/freac/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/pkgs/applications/audio/freac/default.nix b/pkgs/applications/audio/freac/default.nix
new file mode 100644
index 0000000000000..f60320784a255
--- /dev/null
+++ b/pkgs/applications/audio/freac/default.nix
@@ -0,0 +1,38 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+
+, boca
+, smooth
+, systemd
+}:
+
+stdenv.mkDerivation rec {
+  pname = "freac";
+  version = "1.1.3";
+
+  src = fetchFromGitHub {
+    owner = "enzo1982";
+    repo = "freac";
+    rev = "v${version}";
+    sha256 = "1sdrsc5pn5901bbds7dj02n71zn5rs4wnv2xxs8ffql4b7jjva0m";
+  };
+
+  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;
+  };
+}