Merge pull request #284 from crazazy/master

Fixed bug where some nur-combined packages couldn't build
This commit is contained in:
Jörg Thalheim 2020-10-23 13:39:23 +02:00 committed by GitHub
commit f49e7d1bf0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,7 +18,7 @@ let
createRepo = name: attr: import ./lib/evalRepo.nix {
inherit name pkgs lib;
inherit (attr) url;
src = repoSource name attr + "/" + (attr.file or "");
src = repoSource name attr + ("/" + (attr.file or ""));
};
in {