forked from mirrors/nixpkgs
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
|
||||
|
||||
mkDerivation = drv:
|
||||
let inherit (builtins.parseDrvName drv.version) version; in
|
||||
let inherit (builtins.parseDrvName drv.name) version; in
|
||||
stdenv.mkDerivation
|
||||
(drv // {
|
||||
setupHook = ./setup-hook.sh;
|
||||
|
@ -112,7 +112,7 @@ let
|
|||
./extra-cmake-modules/0001-extra-cmake-modules-paths.patch
|
||||
];
|
||||
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 ];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
|
|
Loading…
Reference in a new issue