1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 21:50:55 +00:00

qtcreator: use Qt mkDerivation

This commit is contained in:
Nikolay Korotkiy 2019-09-19 10:04:54 +03:00 committed by Matthieu Coudron
parent 47cc8785bf
commit ad4a3074c0

View file

@ -1,9 +1,9 @@
{ stdenv, fetchurl, fetchgit, fetchpatch, makeWrapper
{ mkDerivation, lib, fetchurl, fetchgit, fetchpatch
, qtbase, qtquickcontrols, qtscript, qtdeclarative, qmake, llvmPackages_8
, withDocumentation ? false
}:
with stdenv.lib;
with lib;
let
baseVersion = "4.9";
@ -21,7 +21,7 @@ let
});
in
stdenv.mkDerivation rec {
mkDerivation rec {
pname = "qtcreator";
version = "${baseVersion}.${revision}";