biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / audio / losslessaudiochecker / default.nix
blobcdea7180a73efdfbf5c64f6929ff7a3771011c74
1 { lib, stdenv, fetchurl, autoPatchelfHook }:
3 stdenv.mkDerivation {
4   pname = "losslessaudiochecker";
5   version = "2.0.5";
7   src = fetchurl {
8     url = "https://web.archive.org/web/20211119122205/https://losslessaudiochecker.com/dl/LAC-Linux-64bit.tar.gz";
9     sha256 = "1i1zbl7sqwxwmhw89lgz922l5k85in3y76zb06h8j3zd0lb20wkq";
10   };
12   nativeBuildInputs = [ autoPatchelfHook ];
14   sourceRoot = ".";
16   dontBuild = true;
18   installPhase = ''
19     install LAC -D -t $out/bin
20   '';
22   meta = {
23     description = "Utility to check whether audio is truly lossless or not";
24     homepage = "https://losslessaudiochecker.com";
25     sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
26     license = lib.licenses.unfree;
27     platforms = [ "x86_64-linux" ];
28     maintainers = with lib.maintainers; [ p-h ];
29     mainProgram = "LAC";
30   };