mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 14:13:35 +00:00
10 lines
136 B
Nix
10 lines
136 B
Nix
|
{ pkgs, makeInstalledTest, ... }:
|
||
|
|
||
|
makeInstalledTest {
|
||
|
tested = pkgs.appstream;
|
||
|
|
||
|
testConfig = {
|
||
|
appstream.enable = true;
|
||
|
};
|
||
|
}
|