nix: fix evaluation

Sorry!
This commit is contained in:
Dan Peebles 2017-04-08 21:15:21 -04:00
parent ff1e372849
commit ec674a6372

View File

@ -7,7 +7,7 @@
let
common = { name, suffix ? "", src, patchPhase, fromGit ? false }: stdenv.mkDerivation rec {
common = { name, suffix ? "", src, patchPhase ? "", fromGit ? false }: stdenv.mkDerivation rec {
inherit name src patchPhase;
version = lib.getVersion name;