sdate: move autoreconfHook to nativeBuildInputs, minor cleanups

main
Sandro Jäckel 3 years ago
parent 45ae719fb5
commit 1d86420916
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
  1. 11
      pkgs/tools/misc/sdate/default.nix

@ -1,4 +1,5 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation rec {
pname = "sdate";
version = "0.7";
@ -10,13 +11,13 @@ stdenv.mkDerivation rec {
hash = "sha256-jkwe+bSBa0p1Xzfetsdpw0RYw/gSRxnY2jBOzC5HtJ8=";
};
buildInputs = [ autoreconfHook ];
nativeBuildInputs = [ autoreconfHook ];
meta = {
meta = with lib; {
homepage = "https://www.df7cb.de/projects/sdate";
description = "Eternal september version of the date program";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ edef ];
platforms = lib.platforms.all;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ edef ];
platforms = platforms.all;
};
}

Loading…
Cancel
Save