summary refs log tree commit diff
path: root/pkgs/tools/misc/calamares
diff options
context:
space:
mode:
authorMichael Fellinger <michael.fellinger@iohk.io>2019-10-27 10:37:06 +0100
committerLassulus <github@lassul.us>2019-10-27 11:20:07 +0100
commitf2236425b9f2176d165b9b303d5907b1a3f9b97e (patch)
tree0c96b94135d60fa6f7ef30a7330382ad0f8f41e6 /pkgs/tools/misc/calamares
parent2896f00181b6dd11c3075bfc5706f02beec1e9e3 (diff)
downloadnixpkgs-f2236425b9f2176d165b9b303d5907b1a3f9b97e.tar
nixpkgs-f2236425b9f2176d165b9b303d5907b1a3f9b97e.tar.gz
nixpkgs-f2236425b9f2176d165b9b303d5907b1a3f9b97e.tar.bz2
nixpkgs-f2236425b9f2176d165b9b303d5907b1a3f9b97e.tar.lz
nixpkgs-f2236425b9f2176d165b9b303d5907b1a3f9b97e.tar.xz
nixpkgs-f2236425b9f2176d165b9b303d5907b1a3f9b97e.tar.zst
nixpkgs-f2236425b9f2176d165b9b303d5907b1a3f9b97e.zip
calamares: fix qt path
Diffstat (limited to 'pkgs/tools/misc/calamares')
-rw-r--r--pkgs/tools/misc/calamares/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/tools/misc/calamares/default.nix b/pkgs/tools/misc/calamares/default.nix
index 3a6585514ab..4adadbf4707 100644
--- a/pkgs/tools/misc/calamares/default.nix
+++ b/pkgs/tools/misc/calamares/default.nix
@@ -1,10 +1,10 @@
-{ stdenv, fetchurl, boost, cmake, extra-cmake-modules, kparts, kpmcore
+{ lib, fetchurl, boost, cmake, extra-cmake-modules, kparts, kpmcore
 , kservice, libatasmart, libxcb, libyamlcpp, parted, polkit-qt, python, qtbase
 , qtquickcontrols, qtsvg, qttools, qtwebengine, utillinux, glibc, tzdata
-, ckbcomp, xkeyboard_config
+, ckbcomp, xkeyboard_config, mkDerivation
 }:
 
-stdenv.mkDerivation rec {
+mkDerivation rec {
   pname = "calamares";
   version = "3.2.15";
 
@@ -54,10 +54,10 @@ stdenv.mkDerivation rec {
         -i CMakeLists.txt
   '';
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "Distribution-independent installer framework";
     license = licenses.gpl3;
-    maintainers = with stdenv.lib.maintainers; [ manveru ];
+    maintainers = with lib.maintainers; [ manveru ];
     platforms = platforms.linux;
   };
 }