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

View file

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