Skip to content

Commit

Permalink
Merge pull request #47483 from peterhoeg/p/redoflacs
Browse files Browse the repository at this point in the history
redoflacs: init at 0.30.20150202
  • Loading branch information
peterhoeg committed Sep 29, 2018
2 parents 14dbcce + 265a340 commit a29ea58
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
39 changes: 39 additions & 0 deletions 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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -16633,6 +16633,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 {
Expand Down

0 comments on commit a29ea58

Please sign in to comment.