about summary refs log tree commit diff
path: root/pkgs/tools/compression/bzip2/1_1.nix
blob: 15ff3c96b2576943eb87c11dda37ba561c1d5af4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{ lib, stdenv
, fetchFromGitLab
, meson
, python3
, ninja
, testers
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "bzip2-unstable";
  version = "2020-08-11";

  src = fetchFromGitLab {
    owner = "federicomenaquintero";
    repo = "bzip2";
    rev = "15255b553e7c095fb7a26d4dc5819a11352ebba1";
    hash = "sha256-BAyz35D62LWi47B/gNcCSKpdaECHBGSpt21vtnk3fKs=";
  };

  postPatch = ''
    patchShebangs install_links.py
  '';

  nativeBuildInputs = [
    meson
    python3
    ninja
  ];

  outputs = [ "bin" "dev" "out" "man" ];

  mesonFlags = [
    "-Ddocs=disabled"
  ];

  strictDeps = true;

  passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;

  meta = with lib; {
    description = "High-quality data compression program";
    license = licenses.bsdOriginal;
    pkgConfigModules = [ "bz2" ];
    platforms = platforms.all;
    maintainers = [];
  };
})