1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00

treewide: post-stc-ng test fixes (#340046)

This commit is contained in:
K900 2024-09-06 13:44:01 +03:00 committed by GitHub
commit b39277ab46
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 6 additions and 10 deletions

View file

@ -33,6 +33,7 @@ import ./make-test-python.nix ({ pkgs, lib, ... }: {
stdenv stdenvNoCC emptyContainer.config.containers.foo.path stdenv stdenvNoCC emptyContainer.config.containers.foo.path
libxslt desktop-file-utils texinfo docbook5 libxml2 libxslt desktop-file-utils texinfo docbook5 libxml2
docbook_xsl_ns xorg.lndir documentation-highlighter docbook_xsl_ns xorg.lndir documentation-highlighter
perlPackages.ConfigIniFiles
]; ];
}; };

View file

@ -626,6 +626,9 @@ let
libxslt.bin libxslt.bin
nixos-artwork.wallpapers.simple-dark-gray-bottom nixos-artwork.wallpapers.simple-dark-gray-bottom
ntp ntp
perlPackages.ConfigIniFiles
perlPackages.FileSlurp
perlPackages.JSON
perlPackages.ListCompare perlPackages.ListCompare
perlPackages.XMLLibXML perlPackages.XMLLibXML
# make-options-doc/default.nix # make-options-doc/default.nix

View file

@ -10,17 +10,9 @@ rustPlatform.buildRustPackage {
pname = "switch-to-configuration"; pname = "switch-to-configuration";
version = "0.1.0"; version = "0.1.0";
src = lib.fileset.toSource { src = ./src;
root = ./.;
fileset = lib.fileset.unions [
./Cargo.lock
./Cargo.toml
./build.rs
./src
];
};
cargoLock.lockFile = ./Cargo.lock; cargoLock.lockFile = ./src/Cargo.lock;
nativeBuildInputs = [ pkg-config ]; nativeBuildInputs = [ pkg-config ];
buildInputs = [ dbus ]; buildInputs = [ dbus ];