pkgs/tools: pkgconfig -> pkg-config (2)
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{ lib, stdenv, fetchFromGitHub, pkgconfig, nettools, gettext, flex
|
||||
{ lib, stdenv, fetchFromGitHub, pkg-config, nettools, gettext, flex
|
||||
, readline ? null, openssl ? null, python2 ? null, ncurses ? null, rocksdb
|
||||
, sqlite ? null, postgresql ? null, libmysqlclient ? null, zlib ? null, lzo ? null
|
||||
, jansson ? null, acl ? null, glusterfs ? null, libceph ? null, libcap ? null
|
||||
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "1awf5i4mw2nfd7z0dmqnywapnx9nz6xwqv8rxp0y2mnrhzdpbrbz";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [
|
||||
nettools gettext readline openssl python2 flex ncurses sqlite postgresql
|
||||
libmysqlclient zlib lzo jansson acl glusterfs libceph libcap rocksdb
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
|
||||
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config
|
||||
, acl, librsync, ncurses, openssl, zlib, uthash }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "1zhq240kz881vs2s620qp0kifmgr582caalm85ls789w9rmdkhjl";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
||||
buildInputs = [ librsync ncurses openssl zlib uthash ]
|
||||
++ lib.optional (!stdenv.isDarwin) acl;
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# Tested with simple dump and restore -i, but complains that
|
||||
# /nix/store/.../etc/dumpdates doesn't exist.
|
||||
|
||||
{ lib, stdenv, fetchurl, pkgconfig,
|
||||
{ lib, stdenv, fetchurl, pkg-config,
|
||||
e2fsprogs, ncurses, readline }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "15rg5y15ak0ppqlhcih78layvg7cwp6hc16p3c58xs8svlkxjqc0";
|
||||
};
|
||||
|
||||
buildInputs = [ e2fsprogs pkgconfig ncurses readline ];
|
||||
buildInputs = [ e2fsprogs pkg-config ncurses readline ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://dump.sourceforge.io/";
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ lib, stdenv, fetchFromGitHub, fuse, icu, pkgconfig, libxml2, libuuid }:
|
||||
{ lib, stdenv, fetchFromGitHub, fuse, icu, pkg-config, libxml2, libuuid }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "3.4.2_Z7550-02501";
|
||||
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
sourceRoot = "source/ltfs";
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
|
||||
buildInputs = [
|
||||
fuse icu libxml2 libuuid
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ mkDerivation, lib, stdenv, fetchurl, cmake, pkgconfig, makeWrapper
|
||||
{ mkDerivation, lib, stdenv, fetchurl, cmake, pkg-config, makeWrapper
|
||||
, httrack, qtbase, qtmultimedia }:
|
||||
|
||||
mkDerivation rec {
|
||||
@@ -12,7 +12,7 @@ mkDerivation rec {
|
||||
|
||||
buildInputs = [ httrack qtbase qtmultimedia ];
|
||||
|
||||
nativeBuildInputs = [ cmake makeWrapper pkgconfig ];
|
||||
nativeBuildInputs = [ cmake makeWrapper pkg-config ];
|
||||
|
||||
prePatch = ''
|
||||
substituteInPlace cmake/HTTRAQTFindHttrack.cmake \
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{ mkDerivation, lib, stdenv, fetchurl
|
||||
, pkgconfig, libtool, qmake
|
||||
, pkg-config, libtool, qmake
|
||||
, rsync, ssh
|
||||
}:
|
||||
|
||||
@@ -15,7 +15,7 @@ mkDerivation rec {
|
||||
|
||||
buildInputs = [ rsync ssh ];
|
||||
|
||||
nativeBuildInputs = [ pkgconfig libtool qmake ];
|
||||
nativeBuildInputs = [ pkg-config libtool qmake ];
|
||||
|
||||
prePatch = ''
|
||||
for File in luckybackup.pro menu/luckybackup-pkexec \
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ lib, stdenv, fetchFromGitHub, cmake, pkgconfig
|
||||
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config
|
||||
, glib, zlib, pcre, libmysqlclient, libressl }:
|
||||
|
||||
let inherit (lib) getDev; in
|
||||
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "0vbz0ri5hm6yzkrcgnaj8px6bf59myr5dbhyy7fd4cv44hr685k6";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake pkgconfig ];
|
||||
nativeBuildInputs = [ cmake pkg-config ];
|
||||
|
||||
buildInputs = [ glib zlib pcre libmysqlclient libressl ];
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ lib, stdenv, fetchurl, boost, pkgconfig, scons, util-linux, fuse, libevent, openssl, zlib }:
|
||||
{ lib, stdenv, fetchurl, boost, pkg-config, scons, util-linux, fuse, libevent, openssl, zlib }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
version = "0.8.1";
|
||||
@@ -10,7 +10,7 @@ stdenv.mkDerivation {
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
boost pkgconfig scons util-linux fuse libevent openssl zlib
|
||||
boost pkg-config scons util-linux fuse libevent openssl zlib
|
||||
];
|
||||
|
||||
buildPhase = ''
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{ lib, stdenv, fetchFromGitHub, autoreconfHook
|
||||
, pkgconfig, libuuid, e2fsprogs, nilfs-utils, ntfs3g
|
||||
, pkg-config, libuuid, e2fsprogs, nilfs-utils, ntfs3g
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "0bv15i0gxym4dv48rgaavh8p94waryn1l6viis6qh5zm9cd08skg";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
||||
buildInputs = [
|
||||
e2fsprogs libuuid stdenv.cc.libc nilfs-utils ntfs3g
|
||||
(lib.getOutput "static" stdenv.cc.libc)
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
, zlib
|
||||
, newt
|
||||
, openssl
|
||||
, pkgconfig
|
||||
, pkg-config
|
||||
, slang
|
||||
, autoreconfHook
|
||||
}:
|
||||
@@ -20,7 +20,7 @@ stdenv.mkDerivation {
|
||||
|
||||
configureFlags = [ "--with-ssl-headers=${openssl.dev}/include/openssl" ];
|
||||
|
||||
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
||||
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
||||
buildInputs = [ bzip2 zlib newt newt openssl slang ];
|
||||
|
||||
patches = [
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ lib, stdenv, fetchFromGitHub, bison, boost, cmake, makeWrapper, pkgconfig
|
||||
{ lib, stdenv, fetchFromGitHub, bison, boost, cmake, makeWrapper, pkg-config
|
||||
, curl, cyrus_sasl, libaio, libedit, libev, libevent, libgcrypt, libgpgerror, lz4
|
||||
, ncurses, numactl, openssl, protobuf, valgrind, xxd, zlib
|
||||
, perlPackages
|
||||
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
|
||||
inherit sha256;
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ bison boost cmake makeWrapper pkgconfig ];
|
||||
nativeBuildInputs = [ bison boost cmake makeWrapper pkg-config ];
|
||||
|
||||
buildInputs = [
|
||||
curl cyrus_sasl libaio libedit libev libevent libgcrypt libgpgerror lz4
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ lib, stdenv, fetchFromGitHub, rustPlatform, pkgconfig, openssl, libsodium
|
||||
{ lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, libsodium
|
||||
, llvmPackages, clang, lzma
|
||||
, Security }:
|
||||
|
||||
@@ -19,7 +19,7 @@ rustPlatform.buildRustPackage rec {
|
||||
./v3.1.1-fix-Cargo.lock.patch
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ pkgconfig llvmPackages.libclang clang ];
|
||||
nativeBuildInputs = [ pkg-config llvmPackages.libclang clang ];
|
||||
buildInputs = [ openssl libsodium lzma ]
|
||||
++ (lib.optional stdenv.isDarwin Security);
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ lib, stdenv, fetchFromGitHub, pkgconfig, autoreconfHook, glib, pcre }:
|
||||
{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook, glib, pcre }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "rdup";
|
||||
@@ -11,7 +11,7 @@ stdenv.mkDerivation {
|
||||
sha256 = "0bzyv6qmnivxnv9nw7lnfn46k0m1dlxcjj53zcva6v8y8084l1iw";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
||||
buildInputs = [ glib pcre ];
|
||||
|
||||
meta = {
|
||||
|
||||
Reference in New Issue
Block a user