mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-22 12:04:40 +00:00
Merge pull request #225311 from alyssais/pkg-1.19.1
pkg: 1.19.0 -> 1.19.1
This commit is contained in:
commit
aac9f2d7c7
@ -1,23 +1,23 @@
|
|||||||
{ lib, stdenv, fetchFromGitHub, m4, pkg-config, tcl
|
{ lib, stdenv, fetchFromGitHub, m4, pkg-config, tcl
|
||||||
, bzip2, libarchive, libbsd, xz, openssl, zlib
|
, bzip2, elfutils, libarchive, libbsd, xz, openssl, zlib
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation (finalAttrs: {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "pkg";
|
pname = "pkg";
|
||||||
version = "1.19.0";
|
version = "1.19.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "freebsd";
|
owner = "freebsd";
|
||||||
repo = "pkg";
|
repo = "pkg";
|
||||||
rev = finalAttrs.version;
|
rev = finalAttrs.version;
|
||||||
sha256 = "W66g8kVvaPJSyOZcgyDcUBrWQQ5YDkRqofSWfIsjd+k=";
|
sha256 = "WHR2evPn4Y0wzGwVUEuYPrDDnuPSsYHr4xIofAHeTJk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
setOutputFlags = false;
|
setOutputFlags = false;
|
||||||
separateDebugInfo = true;
|
separateDebugInfo = true;
|
||||||
|
|
||||||
nativeBuildInputs = [ m4 pkg-config tcl ];
|
nativeBuildInputs = [ m4 pkg-config tcl ];
|
||||||
buildInputs = [ bzip2 libarchive xz openssl zlib ]
|
buildInputs = [ bzip2 elfutils libarchive openssl xz zlib ]
|
||||||
++ lib.optional stdenv.isLinux libbsd;
|
++ lib.optional stdenv.isLinux libbsd;
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user