summary refs log tree commit diff
path: root/pkgs/applications/misc/cura/lulzbot/curaengine.nix
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2021-01-17 18:08:59 +0100
committerJörg Thalheim <joerg@thalheim.io>2021-01-17 18:08:59 +0100
commit1279bf812ca11fa50a501aad5116c51afd7390a6 (patch)
tree46a5de6a33bf5736a3e9b3e886dc7542cec83b61 /pkgs/applications/misc/cura/lulzbot/curaengine.nix
parent9541eb734da2e3cf67ff6c9e8e9a1c46b00d5eb1 (diff)
parentd87e126913a3ba87f26f5b0bada589d4cfa8e850 (diff)
downloadnixpkgs-1279bf812ca11fa50a501aad5116c51afd7390a6.tar
nixpkgs-1279bf812ca11fa50a501aad5116c51afd7390a6.tar.gz
nixpkgs-1279bf812ca11fa50a501aad5116c51afd7390a6.tar.bz2
nixpkgs-1279bf812ca11fa50a501aad5116c51afd7390a6.tar.lz
nixpkgs-1279bf812ca11fa50a501aad5116c51afd7390a6.tar.xz
nixpkgs-1279bf812ca11fa50a501aad5116c51afd7390a6.tar.zst
nixpkgs-1279bf812ca11fa50a501aad5116c51afd7390a6.zip
Merge remote-tracking branch 'upstream/master' into HEAD
Diffstat (limited to 'pkgs/applications/misc/cura/lulzbot/curaengine.nix')
-rw-r--r--pkgs/applications/misc/cura/lulzbot/curaengine.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/misc/cura/lulzbot/curaengine.nix b/pkgs/applications/misc/cura/lulzbot/curaengine.nix
index a5cfa937fd8..5d1df20e224 100644
--- a/pkgs/applications/misc/cura/lulzbot/curaengine.nix
+++ b/pkgs/applications/misc/cura/lulzbot/curaengine.nix
@@ -1,4 +1,4 @@
-{ gcc8Stdenv, callPackage, fetchgit, fetchpatch, cmake, libarcusLulzbot, stb, protobuf }:
+{ lib, gcc8Stdenv, callPackage, fetchgit, fetchpatch, cmake, libarcusLulzbot, stb, protobuf }:
 
 gcc8Stdenv.mkDerivation rec {
   pname = "curaengine-lulzBot";
@@ -17,7 +17,7 @@ gcc8Stdenv.mkDerivation rec {
 
   cmakeFlags = [ "-DCURA_ENGINE_VERSION=${version}" ];
 
-  meta = with gcc8Stdenv.lib; {
+  meta = with lib; {
     description = "A powerful, fast and robust engine for processing 3D models into 3D printing instruction";
     homepage = "https://code.alephobjects.com/source/curaengine-lulzbot/";
     license = licenses.agpl3;