datefmt: init at 0.2.1

datefmt is a simple C program that formats unix timestamps in text streams

Signed-off-by: William Casarin <jb55@jb55.com>
Link: https://lists.sr.ht/~andir/nixpkgs-dev/%3C20211206021054.2252306-1-jb55@jb55.com%3E
This commit is contained in:
William Casarin 2021-12-05 18:02:29 -08:00
parent 18ffaef65d
commit e102ec2c5d
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib, stdenv, fetchurl, datefmt, testVersion }:
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 = 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 ];
};
}

View file

@ -2678,6 +2678,8 @@ with pkgs;
howard-hinnant-date = callPackage ../development/libraries/howard-hinnant-date { };
datefmt = callPackage ../tools/misc/datefmt { };
datefudge = callPackage ../tools/system/datefudge { };
dateutils = callPackage ../tools/misc/dateutils { };