Skip to content

Commit

Permalink
Revert "pyalpm: remove deprecated pkgconfig alias"
Browse files Browse the repository at this point in the history
This reverts commit 496f14e.
  • Loading branch information
lopsided98 committed Sep 14, 2023
1 parent 57a73d7 commit 71437d0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkgs/python-modules/pyalpm/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{ lib, fetchPypi, buildPythonPackage, pkg-config, pacman, libarchive, nose }:
{ lib, fetchPypi, buildPythonPackage, pkgconfig, pkg-config, pacman, libarchive
, nose }:

buildPythonPackage rec {
pname = "pyalpm";
Expand All @@ -9,7 +10,7 @@ buildPythonPackage rec {
sha256 = "sha256-mebsc7jEa7EkZgE/Io+DHuDRjoq2ZLkaAcKjxA3gfH8=";
};

nativeBuildInputs = [ pkg-config ];
nativeBuildInputs = [ pkgconfig pkg-config ];
buildInputs = [ pacman libarchive ];
checkInputs = [ nose ];

Expand Down

0 comments on commit 71437d0

Please sign in to comment.