7 stdenv.mkDerivation (finalAttrs: {
12 url = "https://heasarc.gsfc.nasa.gov/docs/software/ftools/fitsverify/fitsverify-${finalAttrs.version}.tar.gz";
13 hash = "sha256-bEXoA6fg7by30TkYYVuuY2HSszPCkrhJxQnsm+vbGLQ=";
20 # See build instructions in the README file in src.
22 $CC -o fitsverify ftverify.c fvrf_data.c fvrf_file.c fvrf_head.c \
23 fvrf_key.c fvrf_misc.c -DSTANDALONE \
29 install -D fitsverify $out/bin/fitsverify
33 description = "FITS File Format-Verification Tool";
34 mainProgram = "fitsverify";
36 Fitsverify is a computer program that rigorously checks whether a FITS
37 (Flexible Image Transport System) data file conforms to all the
38 requirements defined in Version 3.0 of the FITS Standard document.
40 homepage = "https://heasarc.gsfc.nasa.gov/docs/software/ftools/fitsverify/";
41 license = licenses.mit;
42 platforms = with platforms; linux;
43 maintainers = with maintainers; [ panicgh ];