accuraterip-checksum: init at 1.5

This commit is contained in:
Jan Tojnar 2018-09-13 16:50:22 +02:00
parent 56b9f6fc8e
commit 884c629832
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ stdenv, fetchFromGitHub, libsndfile }:
stdenv.mkDerivation rec {
name = "accuraterip-checksum-${version}";
version = "1.5";
src = fetchFromGitHub {
owner = "leo-bogert";
repo = "accuraterip-checksum";
rev = "version${version}";
sha256 = "1a6biy78jb094rifazn4a2g1dlhryg5q8p8gwj0a60ipl0vfb9bj";
};
buildInputs = [ libsndfile ];
installPhase = ''
runHook preInstall
install -D -m755 accuraterip-checksum "$out/bin/accuraterip-checksum"
runHook postInstall
'';
meta = with stdenv.lib; {
description = "Program for computing the AccurateRip checksum of singletrack WAV files";
homepage = https://github.com/leo-bogert/accuraterip-checksum;
license = licenses.gpl3;
maintainers = with maintainers; [ ];
platforms = with platforms; linux;
};
}

View file

@ -426,6 +426,8 @@ with pkgs;
acct = callPackage ../tools/system/acct { };
accuraterip-checksum = callPackage ../tools/audio/accuraterip-checksum { };
acme-sh = callPackage ../tools/admin/acme.sh { };
acoustidFingerprinter = callPackage ../tools/audio/acoustid-fingerprinter {