idris: prefix package derivation names with "idris-"

This commit is contained in:
Silvan Mosberger
2018-07-13 22:43:33 +02:00
parent cb12f601d7
commit 1d94e4c363

View File

@@ -20,7 +20,7 @@ let
};
in
stdenv.mkDerivation ({
name = "${name}-${version}";
name = "idris-${name}-${version}";
buildInputs = [ idris-with-packages gmp ] ++ extraBuildInputs;
propagatedBuildInputs = allIdrisDeps;