lol

sdate: move autoreconfHook to nativeBuildInputs, minor cleanups

+6 -5
+6 -5
pkgs/tools/misc/sdate/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, autoreconfHook }: 2 + 2 3 stdenv.mkDerivation rec { 3 4 pname = "sdate"; 4 5 version = "0.7"; ··· 10 11 hash = "sha256-jkwe+bSBa0p1Xzfetsdpw0RYw/gSRxnY2jBOzC5HtJ8="; 11 12 }; 12 13 13 - buildInputs = [ autoreconfHook ]; 14 + nativeBuildInputs = [ autoreconfHook ]; 14 15 15 - meta = { 16 + meta = with lib; { 16 17 homepage = "https://www.df7cb.de/projects/sdate"; 17 18 description = "Eternal september version of the date program"; 18 - license = lib.licenses.gpl2Plus; 19 - maintainers = with lib.maintainers; [ edef ]; 20 - platforms = lib.platforms.all; 19 + license = licenses.gpl2Plus; 20 + maintainers = with maintainers; [ edef ]; 21 + platforms = platforms.all; 21 22 }; 22 23 }