lxqt.qlipper: use mkDerivation from stdenv
This commit is contained in:
parent
9d4f020897
commit
e3198ab71f
1 changed files with 4 additions and 2 deletions
|
@ -1,13 +1,14 @@
|
||||||
{ lib
|
{ lib
|
||||||
, mkDerivation
|
, stdenv
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, cmake
|
, cmake
|
||||||
, qtbase
|
, qtbase
|
||||||
, qttools
|
, qttools
|
||||||
|
, wrapQtAppsHook
|
||||||
, gitUpdater
|
, gitUpdater
|
||||||
}:
|
}:
|
||||||
|
|
||||||
mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "qlipper";
|
pname = "qlipper";
|
||||||
version = "5.1.2";
|
version = "5.1.2";
|
||||||
|
|
||||||
|
@ -21,6 +22,7 @@ mkDerivation rec {
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
cmake
|
cmake
|
||||||
qttools
|
qttools
|
||||||
|
wrapQtAppsHook
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
|
|
Loading…
Reference in a new issue