nixpkgs/pkgs/tools/package-management/pacman/default.nix

42 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchurl, pkg-config, m4, perl, libarchive, openssl, zlib, bzip2,
2021-03-14 18:12:53 +00:00
xz, curl, runtimeShell }:
2018-02-28 03:21:00 +00:00
stdenv.mkDerivation rec {
pname = "pacman";
2020-07-05 23:25:38 +00:00
version = "5.2.2";
2018-02-28 03:21:00 +00:00
src = fetchurl {
2019-12-03 03:44:39 +00:00
url = "https://sources.archlinux.org/other/${pname}/${pname}-${version}.tar.gz";
2020-07-05 23:25:38 +00:00
sha256 = "1829jcc300fxidr3cahx5kpnxkpg500daqgn2782hg5m5ygil85v";
2018-02-28 03:21:00 +00:00
};
2019-05-05 10:30:23 +00:00
enableParallelBuilding = true;
configureFlags = [
# trying to build docs fails with a2x errors, unable to fix through asciidoc
"--disable-doc"
2019-05-05 10:39:07 +00:00
"--sysconfdir=/etc"
"--localstatedir=/var"
"--with-scriptlet-shell=${runtimeShell}"
];
2018-02-28 03:21:00 +00:00
2019-05-05 10:39:07 +00:00
installFlags = [ "sysconfdir=${placeholder "out"}/etc" ];
nativeBuildInputs = [ pkg-config m4 ];
2021-03-14 18:12:53 +00:00
buildInputs = [ curl perl libarchive openssl zlib bzip2 xz ];
2018-02-28 03:21:00 +00:00
2018-09-10 00:42:59 +00:00
postFixup = ''
substituteInPlace $out/bin/repo-add \
--replace bsdtar "${libarchive}/bin/bsdtar"
'';
2018-02-28 03:21:00 +00:00
meta = with lib; {
description = "A simple library-based package manager";
homepage = "https://www.archlinux.org/pacman/";
2018-02-28 03:21:00 +00:00
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ mt-caret ];
};
}