diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-10-27T13·00+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-10-27T13·00+0000 |
commit | 3277c9432ab718c8b80c54b228f8d5fbf94fb033 (patch) | |
tree | 6af9b959a1e5c961946fb3e855787f981d8a980c /tests/lang/parse-okay-regression-20041027.nix | |
parent | 463e2817c55fbd5b026d7dd630541b990b82418a (diff) |
* Bug fix in parsing of /* ... */ comments; due to longest match
regexp there could be only one such comment per file.
Diffstat (limited to 'tests/lang/parse-okay-regression-20041027.nix')
-rw-r--r-- | tests/lang/parse-okay-regression-20041027.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/lang/parse-okay-regression-20041027.nix b/tests/lang/parse-okay-regression-20041027.nix new file mode 100644 index 000000000000..ae2e256eeaaa --- /dev/null +++ b/tests/lang/parse-okay-regression-20041027.nix @@ -0,0 +1,11 @@ +{stdenv, fetchurl /* pkgconfig, libX11 */ }: + +stdenv.mkDerivation { + name = "libXi-6.0.1"; + src = fetchurl { + url = http://freedesktop.org/~xlibs/release/libXi-6.0.1.tar.bz2; + md5 = "7e935a42428d63a387b3c048be0f2756"; + }; +/* buildInputs = [pkgconfig]; + propagatedBuildInputs = [libX11]; */ +} |