pkg: init at 1.19.0
This commit is contained in:
parent
1121c8fcb7
commit
e32aef5aca
2 changed files with 38 additions and 0 deletions
36
pkgs/tools/package-management/pkg/default.nix
Normal file
36
pkgs/tools/package-management/pkg/default.nix
Normal file
|
@ -0,0 +1,36 @@
|
|||
{ lib, stdenv, fetchFromGitHub, m4, pkg-config, tcl
|
||||
, bzip2, libarchive, libbsd, lzma, 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 lzma 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;
|
||||
};
|
||||
})
|
|
@ -5249,6 +5249,8 @@ with pkgs;
|
|||
|
||||
pika = callPackage ../applications/graphics/pika { };
|
||||
|
||||
pkg = callPackage ../tools/package-management/pkg { };
|
||||
|
||||
playerctl = callPackage ../tools/audio/playerctl { };
|
||||
|
||||
pn = callPackage ../tools/text/pn { };
|
||||
|
|
Loading…
Reference in a new issue