nixpkgs/pkgs/development/libraries/libnova/default.nix
Tuomas Tynkkynen 21f17d69f6 treewide: Add lots of meta.platforms
Build-tested on x86_64 Linux & Mac.
2016-08-02 21:42:43 +03:00

17 lines
409 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libnova-0.12.3";
src = fetchurl {
url = "mirror://sourceforge/libnova/${name}.tar.gz";
sha256 = "18mkx79gyhccp5zqhf6k66sbhv97s7839sg15534ijajirkhw9dc";
};
meta = {
description = "Celestial Mechanics, Astrometry and Astrodynamics Library";
homepage = http://libnova.sf.net;
platforms = stdenv.lib.platforms.unix;
};
}