github-backup: 0.48.0 -> 0.49.0 (#379003)
[NixPkgs.git] / pkgs / by-name / an / antiprism / package.nix
blobb9e16e48b40fd08275eb3acd503c5a81b8e2e5a4
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   autoreconfHook,
6   libX11,
7   libGL,
8   libGLU,
9   libglut,
12 stdenv.mkDerivation (finalAttrs: {
13   pname = "antiprism";
14   version = "0.32";
16   src = fetchFromGitHub {
17     owner = "antiprism";
18     repo = "antiprism";
19     tag = finalAttrs.version;
20     hash = "sha256-0FkaIsZixYHP45H0gytnzlpRvNd8mMYjW22w15z3RH8=";
21   };
23   nativeBuildInputs = [ autoreconfHook ];
25   buildInputs = [
26     libX11
27     libGLU
28     libGL
29     libglut
30   ];
32   meta = with lib; {
33     homepage = "https://www.antiprism.com";
34     description = "Collection of programs for generating, manipulating, transforming and viewing polyhedra";
35     license = with licenses; [ mit ];
36     maintainers = with maintainers; [ AndersonTorres ];
37   };