mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
20 lines
561 B
Nix
20 lines
561 B
Nix
{ lib, 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 lib; {
|
|
description = "C library and a command-line tool to generate (extended) regular expressions";
|
|
mainProgram = "rgxg";
|
|
license = licenses.zlib;
|
|
maintainers = with maintainers; [ hloeffler ];
|
|
homepage = "https://rgxg.github.io/";
|
|
};
|
|
}
|