lol

sdate: move autoreconfHook to nativeBuildInputs, minor cleanups

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