summary refs log blame commit diff
path: root/pkgs/development/libraries/wcslib/default.nix
blob: 44e6370e6408318052eec5e11eccc374f95a32e0 (plain) (tree)
1
2
3
4
5
6
7
8
9
10


                            
                  





                                                                        
                                                                   

    




                                                       

                                









                                                                  
                                          

    
{ fetchurl,  stdenv, flex }:

stdenv.mkDerivation rec {
  version = "6.3";
  name = "wcslib-${version}";

  buildInputs = [ flex ];

  src = fetchurl {
    url = "ftp://ftp.atnf.csiro.au/pub/software/wcslib/${name}.tar.bz2";
    sha256 ="1si272bms58yv1zmymx9ypx1ycka8bfqy8wk03rvl6nmciyz0dsc";
  };

  prePatch = ''
    substituteInPlace GNUmakefile --replace 2775 0775
    substituteInPlace C/GNUmakefile --replace 2775 0775
  '';

  enableParallelBuilding = true;

  meta = {
    description = "World Coordinate System Library for Astronomy";
    homepage = http://www.atnf.csiro.au/people/mcalabre/WCS/;

    longDescription = ''Library for world coordinate systems for
    spherical geometries and their conversion to image coordinate
    systems. This is the standard library for this purpose in
    astronomy.'';

    license = stdenv.lib.licenses.lgpl3Plus;
    platforms = stdenv.lib.platforms.unix;
  };
}