mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
Adding GNU Triangulated Surface library
svn path=/nixpkgs/trunk/; revision=26132
This commit is contained in:
parent
b13e4ebdef
commit
e1cf8f90e6
28
pkgs/development/libraries/gts/default.nix
Normal file
28
pkgs/development/libraries/gts/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ fetchurl, stdenv, glib, pkgconfig }:
|
||||
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gts-${version}";
|
||||
version = "0.7.6";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/gts/${name}.tar.gz";
|
||||
sha256 = "07mqx09jxh8cv9753y2d2jsv7wp8vjmrd7zcfpbrddz3wc9kx705";
|
||||
};
|
||||
|
||||
buildInputs = [ glib pkgconfig ];
|
||||
|
||||
meta = {
|
||||
homepage = http://gts.sourceforge.net/;
|
||||
license = "LGPLv2+";
|
||||
description = "GNU Triangulated Surface Library";
|
||||
|
||||
longDescription = ''
|
||||
Library intended to provide a set of useful functions to deal with
|
||||
3D surfaces meshed with interconnected triangles.
|
||||
'';
|
||||
|
||||
maintainers = [ stdenv.lib.maintainers.viric ];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
@ -3303,6 +3303,8 @@ let
|
||||
|
||||
gtkspell = callPackage ../development/libraries/gtkspell { };
|
||||
|
||||
gts = callPackage ../development/libraries/gts { };
|
||||
|
||||
# TODO : Add MIT Kerberos and let admin choose.
|
||||
kerberos = heimdal;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user