mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
37 lines
913 B
Nix
37 lines
913 B
Nix
{ lib, stdenv, fetchFromGitHub, m4, pkg-config, tcl
|
|
, bzip2, libarchive, libbsd, xz, openssl, zlib
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "pkg";
|
|
version = "1.19.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "freebsd";
|
|
repo = "pkg";
|
|
rev = finalAttrs.version;
|
|
sha256 = "W66g8kVvaPJSyOZcgyDcUBrWQQ5YDkRqofSWfIsjd+k=";
|
|
};
|
|
|
|
setOutputFlags = false;
|
|
separateDebugInfo = true;
|
|
|
|
nativeBuildInputs = [ m4 pkg-config tcl ];
|
|
buildInputs = [ bzip2 libarchive xz openssl 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;
|
|
};
|
|
})
|