pkgs/development/libraries/kde-frameworks-5.7: fix evaluation
This commit is contained in:
parent
5078d49248
commit
9ba7027652
|
@ -19,7 +19,7 @@ with stdenv.lib; with autonix;
|
||||||
let
|
let
|
||||||
|
|
||||||
mkDerivation = drv:
|
mkDerivation = drv:
|
||||||
let inherit (builtins.parseDrvName drv.version) version; in
|
let inherit (builtins.parseDrvName drv.name) version; in
|
||||||
stdenv.mkDerivation
|
stdenv.mkDerivation
|
||||||
(drv // {
|
(drv // {
|
||||||
setupHook = ./setup-hook.sh;
|
setupHook = ./setup-hook.sh;
|
||||||
|
@ -112,7 +112,7 @@ let
|
||||||
./extra-cmake-modules/0001-extra-cmake-modules-paths.patch
|
./extra-cmake-modules/0001-extra-cmake-modules-paths.patch
|
||||||
];
|
];
|
||||||
meta =
|
meta =
|
||||||
let inherit (parseDrvName super.extra-cmake-modules.name) version; in
|
let inherit (builtins.parseDrvName super.extra-cmake-modules.name) version; in
|
||||||
{
|
{
|
||||||
license = with stdenv.lib.licenses; [ bsd2 ];
|
license = with stdenv.lib.licenses; [ bsd2 ];
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
|
Loading…
Reference in New Issue