e102ec2c5d
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
24 lines
650 B
Nix
24 lines
650 B
Nix
{ 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 ];
|
|
};
|
|
}
|