drawpile: Switch to qt-specific mkDerivation

This commit is contained in:
Francesco Gazzetta 2019-09-05 14:47:57 +02:00
parent 79cfb44011
commit c16df62034

View File

@ -1,4 +1,5 @@
{ stdenv
{ lib
, mkDerivation
, fetchurl
, cmake
, extra-cmake-modules
@ -31,7 +32,7 @@
, enableKisTablet ? false # enable improved graphics tablet support
}:
with stdenv.lib;
with lib;
let
commonDeps = [
@ -57,7 +58,7 @@ let
qtx11extras
];
in stdenv.mkDerivation rec {
in mkDerivation rec {
pname = "drawpile";
version = "2.1.11";