antiprism: init at 0.26
This commit is contained in:
parent
c1dfbaa8ad
commit
f61b91cec4
29
pkgs/applications/science/geometry/antiprism/default.nix
Normal file
29
pkgs/applications/science/geometry/antiprism/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ stdenv
|
||||
, fetchFromGitHub
|
||||
, autoreconfHook
|
||||
, libX11
|
||||
, libGL
|
||||
, libGLU
|
||||
, freeglut }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "antiprism";
|
||||
version = "0.26";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "antiprism";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "sha256-5FE6IbYKk7eMT985R9NCX3GDXE8SrdVHFcCpKeJvKtQ=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
buildInputs = [ libX11 libGLU libGL.dev freeglut.dev ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://www.antiprism.com";
|
||||
description = "A collection of programs for generating, manipulating, transforming and viewing polyhedra";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ AndersonTorres ];
|
||||
};
|
||||
}
|
@ -1163,6 +1163,8 @@ in
|
||||
|
||||
gaia = callPackage ../development/libraries/gaia { };
|
||||
|
||||
antiprism = callPackage ../applications/science/geometry/antiprism { };
|
||||
|
||||
gama = callPackage ../applications/science/geometry/gama { };
|
||||
|
||||
gamecube-tools = callPackage ../development/tools/gamecube-tools { };
|
||||
|
Loading…
Reference in New Issue
Block a user