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