Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-19.03 17 lines 441 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "libnova-0.12.3"; 5 6 src = fetchurl { 7 url = "mirror://sourceforge/libnova/${name}.tar.gz"; 8 sha256 = "18mkx79gyhccp5zqhf6k66sbhv97s7839sg15534ijajirkhw9dc"; 9 }; 10 11 meta = with stdenv.lib; { 12 description = "Celestial Mechanics, Astrometry and Astrodynamics Library"; 13 homepage = http://libnova.sf.net; 14 platforms = platforms.unix; 15 license = licenses.gpl2; 16 }; 17}