accuraterip-checksum: init at 1.5
This commit is contained in:
parent
56b9f6fc8e
commit
884c629832
31
pkgs/tools/audio/accuraterip-checksum/default.nix
Normal file
31
pkgs/tools/audio/accuraterip-checksum/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -426,6 +426,8 @@ with pkgs;
|
|||||||
|
|
||||||
acct = callPackage ../tools/system/acct { };
|
acct = callPackage ../tools/system/acct { };
|
||||||
|
|
||||||
|
accuraterip-checksum = callPackage ../tools/audio/accuraterip-checksum { };
|
||||||
|
|
||||||
acme-sh = callPackage ../tools/admin/acme.sh { };
|
acme-sh = callPackage ../tools/admin/acme.sh { };
|
||||||
|
|
||||||
acoustidFingerprinter = callPackage ../tools/audio/acoustid-fingerprinter {
|
acoustidFingerprinter = callPackage ../tools/audio/acoustid-fingerprinter {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user