nixpkgs/pkgs/applications/audio/losslessaudiochecker/default.nix
2021-11-27 15:34:05 +01:00

30 lines
763 B
Nix

{ lib, stdenv, fetchurl, autoPatchelfHook }:
stdenv.mkDerivation {
pname = "losslessaudiochecker";
version = "2.0.5";
src = fetchurl {
url = "https://web.archive.org/web/20211119122205/https://losslessaudiochecker.com/dl/LAC-Linux-64bit.tar.gz";
sha256 = "1i1zbl7sqwxwmhw89lgz922l5k85in3y76zb06h8j3zd0lb20wkq";
};
nativeBuildInputs = [ autoPatchelfHook ];
setSourceRoot = "sourceRoot=$PWD";
dontBuild = true;
installPhase = ''
install LAC -D -t $out/bin
'';
meta = {
description = "Utility to check whether audio is truly lossless or not";
homepage = "https://losslessaudiochecker.com";
license = lib.licenses.unfree;
platforms = lib.platforms.x86_64;
maintainers = with lib.maintainers; [ p-h ];
};
}