From 1c62806f8992fd548b4e2331051c8eed85bc769d Mon Sep 17 00:00:00 2001 From: booniepepper Date: Mon, 7 Aug 2023 02:17:32 -0700 Subject: dt: init at 1.2.3 Co-authored-by: figsoda --- pkgs/tools/text/dt/default.nix | 43 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 pkgs/tools/text/dt/default.nix (limited to 'pkgs/tools/text/dt') diff --git a/pkgs/tools/text/dt/default.nix b/pkgs/tools/text/dt/default.nix new file mode 100644 index 000000000000..b0b269d0c430 --- /dev/null +++ b/pkgs/tools/text/dt/default.nix @@ -0,0 +1,43 @@ +{ lib +, stdenv +, fetchFromGitHub +, testers +, zigHook +}: + +stdenv.mkDerivation (finalAttrs: { + pname = "dt"; + version = "1.2.3"; + + src = fetchFromGitHub { + owner = "so-dang-cool"; + repo = "dt"; + rev = "v${finalAttrs.version}"; + hash = "sha256-C6sG8iqXs64x2AWCxKGFPyoXC1Fn4p2eSLWwJAQ8CSc="; + }; + + nativeBuildInputs = [ zigHook ]; + + passthru.tests.version = testers.testVersion { package = finalAttrs.dt; }; + + meta = { + homepage = "https://dt.plumbing"; + description = "Duct tape for your unix pipes."; + longDescription = '' + dt is a utility and programming language. The utility is intended for + ergonomic in-the-shell execution. The language is straightforward (in + the most literal sense) with a minimal syntax that allows for + high-level, higher-order programming. + + It's meant to supplement (not replace!) other tools like awk, sed, + xargs, and shell built-ins. Something like the Perl one-liners popular + yesteryear, but hopefully easier to read and reason through. + + In short, dt is intended to be generally useful, with zero pretense of + elegance. + ''; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ booniepepper ]; + mainProgram = "dt"; + }; +}) -- cgit 1.4.1