Merge pull request #106923 from LouisTakePILLz/fix-missing-version-kde

kdeApplications: split derivation name into pname and version attributes
This commit is contained in:
Thomas Tuegel 2020-12-15 05:19:12 -06:00 committed by GitHub
commit f3e8cb10f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -42,8 +42,8 @@ let
libsForQt5.callPackage ({ mkDerivation }: mkDerivation) {}; libsForQt5.callPackage ({ mkDerivation }: mkDerivation) {};
in in
mkDerivation (args // { mkDerivation (args // {
name = "${name}-${version}"; pname = name;
inherit src; inherit src version;
outputs = args.outputs or [ "out" ]; outputs = args.outputs or [ "out" ];