summary refs log tree commit diff
path: root/pkgs/tools/misc/datefmt/default.nix
blob: c70d04326fc832afd01e429982056c7ecd265043 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, stdenv, fetchurl, datefmt, testers }:

stdenv.mkDerivation rec {
  pname = "datefmt";
  version = "0.2.1";

  src = fetchurl {
    url = "http://cdn.jb55.com/tarballs/datefmt/datefmt-${version}.tar.gz";
    sha256 = "5d5e765380afe39eb39d48f752aed748b57dfd843a4947b2a6d18ab9b5e68092";
  };

  makeFlags = [ "PREFIX=$(out)" ];

  passthru.tests.version = testers.testVersion { package = datefmt; };

  meta = with lib; {
    homepage = "https://jb55.com/datefmt";
    description = "A tool that formats timestamps in text streams";
    platforms = platforms.all;
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ jb55 ];
  };
}