Merge pull request #102995 from lovesegfault/plater-init
plater: init at 2020-07-30
This commit is contained in:
commit
c0f4be6652
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;
|
||||||
|
};
|
||||||
|
}
|
@ -23020,6 +23020,8 @@ in
|
|||||||
|
|
||||||
pistol = callPackage ../tools/misc/pistol { };
|
pistol = callPackage ../tools/misc/pistol { };
|
||||||
|
|
||||||
|
plater = libsForQt5.callPackage ../applications/misc/plater { };
|
||||||
|
|
||||||
plexamp = callPackage ../applications/audio/plexamp { };
|
plexamp = callPackage ../applications/audio/plexamp { };
|
||||||
|
|
||||||
plex-media-player = libsForQt512.callPackage ../applications/video/plex-media-player { };
|
plex-media-player = libsForQt512.callPackage ../applications/video/plex-media-player { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user