plater: init at 2020-07-30
This commit is contained in:
parent
7eb64f7603
commit
5cd0d6d710
30
pkgs/applications/misc/plater/default.nix
Normal file
30
pkgs/applications/misc/plater/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -22989,6 +22989,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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user