diff options
author | Karel Kočí <cynerd@email.cz> | 2023-01-08 11:10:24 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2023-01-08 11:10:24 +0100 |
commit | c7a226a92d65cedd384fa29083efdbb07a6084b0 (patch) | |
tree | 695d3620b4223ad002bb78fd76603ec5d84b8a8d | |
parent | 99c357915697b9d800523b2252850c758e2aae1d (diff) | |
download | nixos-personal-c7a226a92d65cedd384fa29083efdbb07a6084b0.tar.gz nixos-personal-c7a226a92d65cedd384fa29083efdbb07a6084b0.tar.bz2 nixos-personal-c7a226a92d65cedd384fa29083efdbb07a6084b0.zip |
pkgs: drop override for glib as fix is already merged in upstream
-rw-r--r-- | pkgs/default.nix | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix index 53cea3c..9b7cf3b 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -48,11 +48,6 @@ let }; }); - } // (nixpkgs.lib.optionalAttrs (nixpkgs.stdenv.hostPlatform != nixpkgs.stdenv.buildPlatform) { - # Nixpkgs fixup - glib = nixpkgs.glib.overrideAttrs (super: { - nativeBuildInputs = with nixpkgs; super.nativeBuildInputs ++ [ libxslt docbook_xsl ]; - }); - }); + }; in personalpkgs |