liberfa: init at 1.7.0
This commit is contained in:
parent
b621677c88
commit
5fe5be3d86
27
pkgs/development/libraries/liberfa/default.nix
Normal file
27
pkgs/development/libraries/liberfa/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ stdenv, fetchFromGitHub, autoreconfHook }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "erfa";
|
||||
version = "1.7.0";
|
||||
|
||||
buildInputs = [ autoreconfHook ];
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "liberfa";
|
||||
repo = "erfa";
|
||||
rev = "v${version}";
|
||||
sha256 = "1z4k2phrw6wwi0kax6ac80jk9c036gi7pmhmg6gaf3lk81k6xz2r";
|
||||
};
|
||||
|
||||
configureFlags = [ "--enable-shared" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Essential Routines for Fundamental Astronomy";
|
||||
homepage = "https://github.com/liberfa/erfa";
|
||||
maintainers = with maintainers; [ mir06 ];
|
||||
license = {
|
||||
url = "https://github.com/liberfa/erfa/blob/master/LICENSE";
|
||||
free = true;
|
||||
};
|
||||
};
|
||||
}
|
@ -4670,6 +4670,8 @@ in
|
||||
|
||||
libepc = callPackage ../development/libraries/libepc { };
|
||||
|
||||
liberfa = callPackage ../development/libraries/liberfa { };
|
||||
|
||||
libestr = callPackage ../development/libraries/libestr { };
|
||||
|
||||
libevdev = callPackage ../development/libraries/libevdev { };
|
||||
|
Loading…
Reference in New Issue
Block a user