mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
Merge pull request #14852 from peterhoeg/aucdtect
aucdtect: init at 0.8.2
This commit is contained in:
commit
f5486f57a9
32
pkgs/tools/audio/aucdtect/default.nix
Normal file
32
pkgs/tools/audio/aucdtect/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ stdenv, fetchurl, lib, rpmextract }:
|
||||
|
||||
assert stdenv.isLinux;
|
||||
|
||||
with lib;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "aucdtext-${version}";
|
||||
version = "0.8-2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.true-audio.com/ftp/aucdtect-${version}.i586.rpm";
|
||||
sha256 = "1lp5f0rq5b5n5il0c64m00gcfskarvgqslpryms9443d200y6mmd";
|
||||
};
|
||||
|
||||
unpackCmd = "${rpmextract}/bin/rpmextract $src";
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
install -m755 local/bin/auCDtect $out/bin/aucdtect
|
||||
'';
|
||||
|
||||
dontStrip = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Verify authenticity of lossless audio files";
|
||||
homepage = http://tausoft.org;
|
||||
license = licenses.unfreeRedistributable;
|
||||
maintainers = with maintainers; [ peterhoeg ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -16601,6 +16601,8 @@ in
|
||||
|
||||
mg = callPackage ../applications/editors/mg { };
|
||||
|
||||
aucdtect = callPackage ../tools/audio/aucdtect { };
|
||||
|
||||
togglesg-download = callPackage ../tools/misc/togglesg-download { };
|
||||
|
||||
discord = callPackage ../applications/networking/instant-messengers/discord { };
|
||||
|
Loading…
Reference in New Issue
Block a user