mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
10 lines
136 B
Nix
10 lines
136 B
Nix
{ pkgs, makeInstalledTest, ... }:
|
|
|
|
makeInstalledTest {
|
|
tested = pkgs.appstream;
|
|
|
|
testConfig = {
|
|
appstream.enable = true;
|
|
};
|
|
}
|