opencomposite: add meta.platforms (#357198)
[NixPkgs.git] / lib / tests / modules / define-value-string-properties.nix
blob972304c01128a24915716ddbea2836a858442af9
1 { lib, ... }: {
3   imports = [{
4     value = lib.mkDefault "def";
5   }];
7   value = lib.mkMerge [
8     (lib.mkIf false "nope")
9     "yes"
10   ];