mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-19 17:39:34 +00:00
libnova added
svn path=/nixpkgs/trunk/; revision=10351
This commit is contained in:
parent
c079c14928
commit
9860dc8ed8
pkgs
15
pkgs/development/libraries/libnova/default.nix
Normal file
15
pkgs/development/libraries/libnova/default.nix
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
args: with args;
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "libnova-0.12.1";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sf/libnova/${name}.tar.gz";
|
||||||
|
sha256 = "0bs6c45q4qkrns36qndl8vns5gvhgpd90hi68bhah4r4hrg48lw0";
|
||||||
|
};
|
||||||
|
configureFlags = "--enable-shared --disable-static";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Celestial Mechanics, Astrometry and Astrodynamics Library";
|
||||||
|
homepage = http://libnova.sf.net;
|
||||||
|
};
|
||||||
|
}
|
|
@ -2263,6 +2263,10 @@ rec {
|
||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
libnova = import ../development/libraries/libnova {
|
||||||
|
inherit fetchurl stdenv;
|
||||||
|
};
|
||||||
|
|
||||||
libogg = import ../development/libraries/libogg {
|
libogg = import ../development/libraries/libogg {
|
||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue