about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/sdate/default.nix
blob: 23dccc0273d1e3627b887fbc7cc25a4ef511b64f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl, autoreconfHook }:
stdenv.mkDerivation rec {
  name = "sdate-${version}";
  version = "0.5";
  src = fetchurl {
    url = "https://github.com/ChristophBerg/sdate/archive/${version}.tar.gz";
    sha256 = "0gbjl1jfxjwiiwf9rz38yp6rb1mgzhawcyg0g9byl6m4kgivf0cx";
  };

  buildInputs = [ autoreconfHook ];

  meta = {
    homepage = https://www.df7cb.de/projects/sdate;
    description = "Eternal september version of the date program";
    license = stdenv.lib.licenses.gpl2Plus;
    maintainers = with stdenv.lib.maintainers; [ edef ];
    platforms = stdenv.lib.platforms.all;
  };
}