summary refs log tree commit diff
path: root/pkgs/tools/text/rgxg
diff options
context:
space:
mode:
authorhloeffler <hloeffler@users.noreply.github.com>2020-10-02 22:32:21 +0200
committerhloeffler <hloeffler@users.noreply.github.com>2020-10-07 18:44:13 +0200
commit90e603fcecf47fb41b9e32f2668540294d4801d7 (patch)
tree012de5085626b3755f9a00ff9b941c3ae5717d2d /pkgs/tools/text/rgxg
parentd07c6856cbbd4260bedf3c12f0329c135e2b3a5d (diff)
downloadnixpkgs-90e603fcecf47fb41b9e32f2668540294d4801d7.tar
nixpkgs-90e603fcecf47fb41b9e32f2668540294d4801d7.tar.gz
nixpkgs-90e603fcecf47fb41b9e32f2668540294d4801d7.tar.bz2
nixpkgs-90e603fcecf47fb41b9e32f2668540294d4801d7.tar.lz
nixpkgs-90e603fcecf47fb41b9e32f2668540294d4801d7.tar.xz
nixpkgs-90e603fcecf47fb41b9e32f2668540294d4801d7.tar.zst
nixpkgs-90e603fcecf47fb41b9e32f2668540294d4801d7.zip
rgxg: init at 0.1.2
Co-authored-by: Doron Behar <doron.behar@gmail.com>
Co-authored-by: Anderson Torres <torres.anderson.85@protonmail.com>
Diffstat (limited to 'pkgs/tools/text/rgxg')
-rw-r--r--pkgs/tools/text/rgxg/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/tools/text/rgxg/default.nix b/pkgs/tools/text/rgxg/default.nix
new file mode 100644
index 00000000000..bd291be7015
--- /dev/null
+++ b/pkgs/tools/text/rgxg/default.nix
@@ -0,0 +1,18 @@
+{ stdenv, fetchzip }:
+
+stdenv.mkDerivation rec {
+  pname = "rgxg";
+  version = "0.1.2";
+
+  src = fetchzip {
+    url = "https://github.com/rgxg/rgxg/releases/download/v${version}/${pname}-${version}.tar.gz";
+    sha256 = "050jxc3qhfrm9fdbzd67hlsqlp4qk1fa20q1g2v919sh7s6v77si";
+  };
+
+  meta = with stdenv.lib; {
+    description = "A C library and a command-line tool to generate (extended) regular expressions";
+    license = licenses.zlib;
+    maintainers = with maintainers; [ hloeffler ];
+    homepage = "https://rgxg.github.io/";
+  };
+}