forked from mirrors/nixpkgs
astrolog: init at 7.30
This commit is contained in:
parent
d4a497382b
commit
4bff3d7346
44
pkgs/applications/science/astronomy/astrolog/default.nix
Normal file
44
pkgs/applications/science/astronomy/astrolog/default.nix
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
{ lib, stdenv, fetchzip, fetchurl, xorg, gnused }:
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "astrolog";
|
||||||
|
version = "7.30";
|
||||||
|
|
||||||
|
src = fetchzip {
|
||||||
|
url = "http://www.astrolog.org/ftp/ast73src.zip";
|
||||||
|
sha256 = "0nry4gxwy5aa99zzr8dlb6babpachsc3jjyk0vw82c7x3clbhl7l";
|
||||||
|
stripRoot = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
patchPhase = ''
|
||||||
|
${gnused}/bin/sed -i "s:~/astrolog:$out/astrolog:g" astrolog.h
|
||||||
|
'';
|
||||||
|
|
||||||
|
buildInputs = [ xorg.libX11 ];
|
||||||
|
NIX_CFLAGS_COMPILE = "-Wno-format-security";
|
||||||
|
|
||||||
|
installPhase =
|
||||||
|
let
|
||||||
|
ephemeris = fetchzip {
|
||||||
|
url = "http://astrolog.org/ftp/ephem/astephem.zip";
|
||||||
|
sha256 = "1mwvpvfk3lxjcc79zvwl4ypqzgqzipnc01cjldxrmx56xkc35zn7";
|
||||||
|
stripRoot = false;
|
||||||
|
};
|
||||||
|
atlas = fetchurl {
|
||||||
|
url = "http://astrolog.org/ftp/atlas/atlasbig.as";
|
||||||
|
sha256 = "1k8cy8gpcvkwkhyz248qhvrv5xiwp1n1s3b7rlz86krh7vzz01mp";
|
||||||
|
};
|
||||||
|
in ''
|
||||||
|
mkdir -p $out/bin $out/astrolog
|
||||||
|
cp -r ${ephemeris}/*.se1 $out/astrolog
|
||||||
|
cp *.as $out/astrolog
|
||||||
|
install astrolog $out/bin
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
maintainers = [ maintainers.kmein ];
|
||||||
|
homepage = "https://astrolog.org/astrolog.htm";
|
||||||
|
description = "Freeware astrology program";
|
||||||
|
platforms = platforms.linux;
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
};
|
||||||
|
}
|
|
@ -186,6 +186,8 @@ with pkgs;
|
||||||
|
|
||||||
antsimulator = callPackage ../games/antsimulator { };
|
antsimulator = callPackage ../games/antsimulator { };
|
||||||
|
|
||||||
|
astrolog = callPackage ../applications/science/astronomy/astrolog { };
|
||||||
|
|
||||||
atkinson-hyperlegible = callPackage ../data/fonts/atkinson-hyperlegible { };
|
atkinson-hyperlegible = callPackage ../data/fonts/atkinson-hyperlegible { };
|
||||||
|
|
||||||
atuin = callPackage ../tools/misc/atuin {
|
atuin = callPackage ../tools/misc/atuin {
|
||||||
|
|
Loading…
Reference in a new issue