1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-07 10:11:47 +02:00

Don't parse "x:x" as a URI

URIs now have to contain "://" or start with "channel:".
This commit is contained in:
Eelco Dolstra 2017-10-30 17:56:44 +01:00
parent 12991152be
commit f90f660b24
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE
3 changed files with 4 additions and 3 deletions

View file

@ -49,7 +49,7 @@ rec {
if comp (head list2) (head list1) then [(head list2)] ++ mergeLists comp list1 (tail list2) else
[(head list1)] ++ mergeLists comp (tail list1) list2;
id = x: x;
id = x:x; # sic
const = x: y: x;