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