drawpile: Switch to qt-specific mkDerivation
This commit is contained in:
parent
79cfb44011
commit
c16df62034
|
@ -1,4 +1,5 @@
|
||||||
{ stdenv
|
{ lib
|
||||||
|
, mkDerivation
|
||||||
, fetchurl
|
, fetchurl
|
||||||
, cmake
|
, cmake
|
||||||
, extra-cmake-modules
|
, extra-cmake-modules
|
||||||
|
@ -31,7 +32,7 @@
|
||||||
, enableKisTablet ? false # enable improved graphics tablet support
|
, enableKisTablet ? false # enable improved graphics tablet support
|
||||||
}:
|
}:
|
||||||
|
|
||||||
with stdenv.lib;
|
with lib;
|
||||||
|
|
||||||
let
|
let
|
||||||
commonDeps = [
|
commonDeps = [
|
||||||
|
@ -57,7 +58,7 @@ let
|
||||||
qtx11extras
|
qtx11extras
|
||||||
];
|
];
|
||||||
|
|
||||||
in stdenv.mkDerivation rec {
|
in mkDerivation rec {
|
||||||
pname = "drawpile";
|
pname = "drawpile";
|
||||||
version = "2.1.11";
|
version = "2.1.11";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue