Merge pull request #102995 from lovesegfault/plater-init

plater: init at 2020-07-30
This commit is contained in:
Florian Klink 2020-11-07 23:45:08 +01:00 committed by GitHub
commit c0f4be6652
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ mkDerivation
, cmake
, fetchFromGitHub
, lib
, libGLU
, qtbase
}:
mkDerivation rec {
pname = "plater";
version = "2020-07-30";
src = fetchFromGitHub {
owner = "Rhoban";
repo = "Plater";
rev = "f8de6d038f95a9edebfcfe142c8e9783697d5b47";
sha256 = "0r20mbzd16zv1aiadjqdy7z6sp09rr6lgfxhvir4ll3cpakkynr4";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ libGLU qtbase ];
meta = with lib; {
description = "3D-printer parts placer and plate generator";
homepage = "https://github.com/Rhoban/Plater";
maintainers = with maintainers; [ lovesegfault ];
platforms = platforms.linux;
license = licenses.cc-by-nc-30;
};
}

View file

@ -23020,6 +23020,8 @@ in
pistol = callPackage ../tools/misc/pistol { };
plater = libsForQt5.callPackage ../applications/misc/plater { };
plexamp = callPackage ../applications/audio/plexamp { };
plex-media-player = libsForQt512.callPackage ../applications/video/plex-media-player { };