sunwait: init at 20201026

authored by Elis Hirwing and committed by tomberek 19f61789 be003e3a

+27
+25
pkgs/applications/misc/sunwait/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub }: 2 + 3 + stdenv.mkDerivation { 4 + pname = "sunwait"; 5 + version = "2020-10-26"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "risacher"; 9 + repo = "sunwait"; 10 + rev = "102cb417ecbb7a3757ba9ee4b94d6db3225124c4"; 11 + sha256 = "0cs8rdcnzsl10zia2k49a6c2z6gvp5rnf31sgn3hn5c7kgy7l3ax"; 12 + }; 13 + 14 + installPhase = '' 15 + install -Dm755 sunwait -t $out/bin 16 + ''; 17 + 18 + meta = with lib; { 19 + description = "Calculates sunrise or sunset times with civil, nautical, astronomical and custom twilights"; 20 + homepage = "https://github.com/risacher/sunwait"; 21 + license = licenses.gpl3Only; 22 + maintainers = with maintainers; [ etu ]; 23 + platforms = platforms.all; 24 + }; 25 + }
+2
pkgs/top-level/all-packages.nix
··· 8192 8192 8193 8193 stubby = callPackage ../tools/networking/stubby { }; 8194 8194 8195 + sunwait = callPackage ../applications/misc/sunwait { }; 8196 + 8195 8197 surface-control = callPackage ../applications/misc/surface-control { }; 8196 8198 8197 8199 syntex = callPackage ../tools/graphics/syntex {};