mirror of
https://github.com/NixOS/nix
synced 2025-07-08 02:43:54 +02:00
* Bug fix in parsing of /* ... */ comments; due to longest match
regexp there could be only one such comment per file.
This commit is contained in:
parent
463e2817c5
commit
3277c9432a
4 changed files with 14 additions and 2 deletions
11
tests/lang/parse-okay-regression-20041027.nix
Normal file
11
tests/lang/parse-okay-regression-20041027.nix
Normal file
|
@ -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]; */
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue