Merge pull request #279937 from Uthar/issue-3283

lisp-modules: Prepend Lisp name before package name for lisp pkgs

authored by 7c6f434c and committed by GitHub d5304c2b 79701005

+2 -1
+2 -1
pkgs/development/lisp-modules/nix-cl.nix
··· 147 147 148 148 stdenv.mkDerivation (rec { 149 149 inherit 150 - pname version nativeLibs javaLibs lispLibs systems asds 150 + version nativeLibs javaLibs lispLibs systems asds 151 151 pkg program flags faslExt 152 152 ; 153 153 ··· 216 216 dontStrip = true; 217 217 218 218 } // (args // { 219 + pname = "${args.pkg.pname}-${args.pname}"; 219 220 src = if builtins.length (args.patches or []) > 0 220 221 then pkgs.applyPatches { inherit (args) src patches; } 221 222 else args.src;