summaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/libliftoff/default.nix
blob: 87a2458bdc8ce35bf73d8744246fcd41ac131e2a (plain)
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
{
  callPackage,
  fetchFromGitLab,
  fetchpatch,
}:
let
  mkVariant =
    {
      version,
      hash,
      patches ? [ ],
    }:
    callPackage ./generic.nix {
      inherit version patches;
      src = fetchFromGitLab {
        domain = "gitlab.freedesktop.org";
        owner = "emersion";
        repo = "libliftoff";
        rev = "v${version}";
        inherit hash;
      };
    };
in
{
  libliftoff_0_4 = mkVariant {
    version = "0.4.1";
    hash = "sha256-NPwhsd6IOQ0XxNQQNdaaM4kmwoLftokV86WYhoa5csY=";
    patches = [
      # Pull gcc-14 fix:
      #   https://gitlab.freedesktop.org/emersion/libliftoff/-/merge_requests/78
      (fetchpatch {
        name = "libliftoff-gcc-14-calloc.patch";
        url = "https://gitlab.freedesktop.org/emersion/libliftoff/-/commit/29a06add8ef184f85e37ff8abdc34fbaa2f4ee1e.patch";
        hash = "sha256-Y8x1RK3o/I9bs/ZOLeC4t9AIK78l0QnlBWHhiVC+sz8=";
      })
    ];
  };
  libliftoff_0_5 = mkVariant {
    version = "0.5.0";
    hash = "sha256-PcQY8OXPqfn8C30+GAYh0Z916ba5pik8U0fVpZtFb5g=";
  };
}