37 lines
932 B
Nix
37 lines
932 B
Nix
{ lib, stdenv, fetchFromGitHub, m4, pkg-config, tcl
|
|
, bzip2, elfutils, libarchive, libbsd, xz, openssl, zlib
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "pkg";
|
|
version = "1.19.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "freebsd";
|
|
repo = "pkg";
|
|
rev = finalAttrs.version;
|
|
sha256 = "WHR2evPn4Y0wzGwVUEuYPrDDnuPSsYHr4xIofAHeTJk=";
|
|
};
|
|
|
|
setOutputFlags = false;
|
|
separateDebugInfo = true;
|
|
|
|
nativeBuildInputs = [ m4 pkg-config tcl ];
|
|
buildInputs = [ bzip2 elfutils libarchive openssl xz zlib ]
|
|
++ lib.optional stdenv.isLinux libbsd;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
preInstall = ''
|
|
mkdir -p $out/etc
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/freebsd/pkg";
|
|
description = "Package management tool for FreeBSD";
|
|
maintainers = with maintainers; [ qyliss ];
|
|
platforms = with platforms; darwin ++ freebsd ++ linux ++ netbsd ++ openbsd;
|
|
license = licenses.bsd2;
|
|
};
|
|
})
|