summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2018-04-23 23:13:52 +0800
committerPeter Hoeg <peter@hoeg.com>2018-09-28 22:42:44 +0800
commit265a340798e9b75c5902aea3e36a16ba06774ab1 (patch)
tree1d6851bae0d2c62968f84ef1758677cc3959f7d7
parent46651b82b87318e37440c15a639d49ec05e79b79 (diff)
downloadnixpkgs-265a340798e9b75c5902aea3e36a16ba06774ab1.tar
nixpkgs-265a340798e9b75c5902aea3e36a16ba06774ab1.tar.gz
nixpkgs-265a340798e9b75c5902aea3e36a16ba06774ab1.tar.bz2
nixpkgs-265a340798e9b75c5902aea3e36a16ba06774ab1.tar.lz
nixpkgs-265a340798e9b75c5902aea3e36a16ba06774ab1.tar.xz
nixpkgs-265a340798e9b75c5902aea3e36a16ba06774ab1.tar.zst
nixpkgs-265a340798e9b75c5902aea3e36a16ba06774ab1.zip
redoflacs: init at 0.30.20150202
-rw-r--r--pkgs/applications/audio/redoflacs/default.nix39
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 41 insertions, 0 deletions
diff --git a/pkgs/applications/audio/redoflacs/default.nix b/pkgs/applications/audio/redoflacs/default.nix
new file mode 100644
index 00000000000..1918fa9e3a9
--- /dev/null
+++ b/pkgs/applications/audio/redoflacs/default.nix
@@ -0,0 +1,39 @@
+{ stdenv, fetchFromGitHub, makeWrapper
+, flac, sox }:
+
+stdenv.mkDerivation rec {
+  name = "redoflacs-${version}";
+  version = "0.30.20150202";
+
+  src = fetchFromGitHub {
+    owner  = "sirjaren";
+    repo   = "redoflacs";
+    rev    = "86c6f5becca0909dcb2a0cb9ed747a575d7a4735";
+    sha256 = "1gzlmh4vnf2fl0x8ig2n1f76082ngldsv85i27dv15y2m1kffw2j";
+  };
+
+  dontBuild = true;
+
+  nativeBuildInputs = [ makeWrapper ];
+
+  installPhase = ''
+    runHook preInstall
+
+    install -Dm755 -t $out/bin redoflacs
+    install -Dm644 -t $out/share/doc/redoflacs LICENSE *.md
+
+    runHook postInstall
+  '';
+
+  postFixup = ''
+    wrapProgram $out/bin/redoflacs \
+      --prefix PATH : ${stdenv.lib.makeBinPath [ flac sox ]}
+  '';
+
+  meta = with stdenv.lib; {
+    description = "Parallel BASH commandline FLAC compressor, verifier, organizer, analyzer, and retagger";
+    homepage    = src.meta.homepage;
+    license     = licenses.gpl2;
+    platforms   = platforms.all;
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 3b8b440e6bb..2d3efaf2772 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -16629,6 +16629,8 @@ with pkgs;
 
   flac = callPackage ../applications/audio/flac { };
 
+  redoflacs = callPackage ../applications/audio/redoflacs { };
+
   flameshot = libsForQt5.callPackage ../tools/misc/flameshot { };
 
   flashplayer = callPackage ../applications/networking/browsers/mozilla-plugins/flashplayer {