1
0
Fork 0

pkgs/wetter: rename pkg-config

This commit is contained in:
clerie 2022-10-02 16:50:31 +02:00
parent d39e2b94d8
commit 89163d4cf3
2 changed files with 3 additions and 3 deletions

View File

@ -6,6 +6,6 @@ self: super: {
pyexcel-webio = self.python3.pkgs.callPackage ./pyexcel-webio {}; pyexcel-webio = self.python3.pkgs.callPackage ./pyexcel-webio {};
uptimestatus = self.python3.pkgs.callPackage ./uptimestatus {}; uptimestatus = self.python3.pkgs.callPackage ./uptimestatus {};
wetter = self.python3.pkgs.callPackage ./wetter { wetter = self.python3.pkgs.callPackage ./wetter {
inherit (self) pkgconfig libsass; inherit (self) pkg-config libsass;
}; };
} }

View File

@ -6,7 +6,7 @@
libsass, libsass,
yarn2nix-moretea, yarn2nix-moretea,
nodejs, nodejs,
pkgconfig, pkg-config,
pkgs, pkgs,
psycopg2, psycopg2,
python3, python3,
@ -34,7 +34,7 @@ let
/* build native node-sass extensions */ /* build native node-sass extensions */
pkgConfig.node-sass = { pkgConfig.node-sass = {
buildInputs = [ python3 libsass pkgconfig ]; buildInputs = [ python3 libsass pkg-config ];
postInstall = '' postInstall = ''
export npm_config_nodedir=${nodejs} export npm_config_nodedir=${nodejs}
LIBSASS_EXT=auto yarn --offline run build LIBSASS_EXT=auto yarn --offline run build