diff options
author | Shea Levy <shea@shealevy.com> | 2018-03-14T00·43-0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-14T00·43-0600 |
commit | 56f2ed00813f49e2834076787f98438a976eebb1 (patch) | |
tree | ea268ddc8d183563ea03d1b9f209f48efbbe5998 /tests/search.nix | |
parent | 7afdc8d4a100d26cd09f7d63c0fe915b4d6a53c9 (diff) | |
parent | c577186f5916c90193368492f1c4180a1386febc (diff) |
Merge pull request #1906 from dtzWill/fix/nix-search
nix search: tests and fix #1893 and part of #1892
Diffstat (limited to 'tests/search.nix')
-rw-r--r-- | tests/search.nix | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/search.nix b/tests/search.nix new file mode 100644 index 000000000000..fea6e7a7a647 --- /dev/null +++ b/tests/search.nix @@ -0,0 +1,25 @@ +with import ./config.nix; + +{ + hello = mkDerivation rec { + name = "hello-${version}"; + version = "0.1"; + buildCommand = "touch $out"; + meta.description = "Empty file"; + }; + foo = mkDerivation rec { + name = "foo-5"; + buildCommand = '' + mkdir -p $out + echo ${name} > $out/${name} + ''; + }; + bar = mkDerivation rec { + name = "bar-3"; + buildCommand = '' + echo "Does not build successfully" + exit 1 + ''; + meta.description = "broken bar"; + }; +} |