python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / package-management / akku / default.nix
blobe1baf2e0b1eb7269c625afe72d0f1012c2941443
1 { lib, stdenv, fetchFromGitLab, autoreconfHook, pkg-config, guile, curl, substituteAll }:
3 stdenv.mkDerivation rec {
4   pname = "akku";
5   version = "1.1.0";
7   src = fetchFromGitLab {
8     owner = "akkuscm";
9     repo = "akku";
10     rev = "v${version}";
11     sha256 = "1pi18aamg1fd6f9ynfl7zx92052xzf0zwmhi2pwcwjs1kbah19f5";
12   };
14   patches = [
15     # substitute libcurl path
16     (substituteAll {
17       src = ./hardcode-libcurl.patch;
18       libcurl = "${curl.out}/lib/libcurl${stdenv.hostPlatform.extensions.sharedLibrary}";
19     })
20   ];
22   nativeBuildInputs = [ autoreconfHook pkg-config ];
24   buildInputs = [ guile ];
26   # Use a dummy package index to boostrap Akku
27   preBuild = ''
28     touch bootstrap.db
29   '';
31   makeFlags = [ "GUILE_AUTO_COMPILE=0" ];
33   meta = with lib; {
34     homepage = "https://akkuscm.org/";
35     description = "Language package manager for Scheme";
36     changelog = "https://gitlab.com/akkuscm/akku/-/raw/v${version}/NEWS.md";
37     platforms = platforms.all;
38     license = licenses.gpl3Plus;
39     maintainers = with maintainers; [ marsam ];
40   };