astroterm: 1.0.4 -> 1.0.6 (#378908)
[NixPkgs.git] / pkgs / by-name / al / alac / package.nix
blobe46b5443477cd7f475a65bc07613fe5804414350
2   autoreconfHook,
3   fetchFromGitHub,
4   lib,
5   stdenv,
6   testers,
7   unstableGitUpdater,
8 }:
9 stdenv.mkDerivation (finalAttrs: {
10   pname = "alac";
11   version = "0.0.7-unstable-2024-10-16";
13   outputs = [
14     "out"
15     "dev"
16   ];
18   src = fetchFromGitHub {
19     owner = "mikebrady";
20     repo = "alac";
21     rev = "1832544d27d01335d823d639b176d1cae25ecfd4";
22     hash = "sha256-xRWDeqyJ/BEaSWVlDXgaKIKJuBwM8kJDIATVTVaMn2k=";
23   };
25   nativeBuildInputs = [
26     autoreconfHook
27   ];
29   passthru = {
30     updateScript = unstableGitUpdater { };
31     tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
32   };
34   meta = {
35     description = "Apple Lossless Codec and Utility with Autotools";
36     homepage = "https://github.com/mikebrady/alac";
37     license = lib.licenses.asl20;
38     pkgConfigModules = [ "alac" ];
39     platforms = lib.platforms.all;
40     maintainers = with lib.maintainers; [ jopejoe1 ];
41   };