lisp-modules: Prepend Lisp name before package name for lisp pkgs
Similar to how python3.pkgs does it https://github.com/NixOS/nixpkgs/issues/277571#issuecomment-1879892844
This commit is contained in:
parent
c27ade81bf
commit
3189f73489
@ -147,7 +147,7 @@ let
|
||||
|
||||
stdenv.mkDerivation (rec {
|
||||
inherit
|
||||
pname version nativeLibs javaLibs lispLibs systems asds
|
||||
version nativeLibs javaLibs lispLibs systems asds
|
||||
pkg program flags faslExt
|
||||
;
|
||||
|
||||
@ -216,6 +216,7 @@ let
|
||||
dontStrip = true;
|
||||
|
||||
} // (args // {
|
||||
pname = "${args.pkg.pname}-${args.pname}";
|
||||
src = if builtins.length (args.patches or []) > 0
|
||||
then pkgs.applyPatches { inherit (args) src patches; }
|
||||
else args.src;
|
||||
|
Loading…
Reference in New Issue
Block a user