352749e577
This was omitted in the latest update. Only adds ~400 KB. It required adding openssl to tests so I tacked on some cleanups. In particular, the GI_TYPELIB_PATH was already being set in the wrapper so we can remove it from the module (not sure why Gtk was even there). Also switched away from using pkgconfig and docbook_xsl aliases and reordered the expression a bit.
13 lines
187 B
Nix
13 lines
187 B
Nix
{ pkgs, lib, makeInstalledTest, ... }:
|
|
|
|
makeInstalledTest {
|
|
tested = pkgs.ostree;
|
|
|
|
testConfig = {
|
|
environment.systemPackages = with pkgs; [
|
|
gnupg
|
|
ostree
|
|
];
|
|
};
|
|
}
|