diff options
| author | tv <tv@krebsco.de> | 2026-03-19 22:45:43 +0100 |
|---|---|---|
| committer | tv <tv@krebsco.de> | 2026-03-19 22:45:43 +0100 |
| commit | 41240df5bdf27c0e1c73bd282691d0599234529a (patch) | |
| tree | 1f25048a7eaa255f37067fd9414cf6c7f72f5def /pkgs/haskell | |
| parent | f613bb677ff2e9a96c02953f80ea3d0cdd46d3d0 (diff) | |
text-wcwidth: init at 1.0.0
Diffstat (limited to 'pkgs/haskell')
| -rw-r--r-- | pkgs/haskell/text-wcwidth.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/pkgs/haskell/text-wcwidth.nix b/pkgs/haskell/text-wcwidth.nix new file mode 100644 index 0000000..e6a43d6 --- /dev/null +++ b/pkgs/haskell/text-wcwidth.nix @@ -0,0 +1,15 @@ +{ mkDerivation, base, fetchgit, lib, mono-traversable, text +, wcwidth +}: +mkDerivation { + pname = "text-wcwidth"; + version = "1.0.0"; + src = fetchgit { + url = "https://cgit.krebsco.de/text-wcwidth"; + sha256 = "1x51za2vpxgdz05arks3a98v9mz12s64rcncgg34fmir42f27li1"; + rev = "d70945bdfcf1bebf3dadb6b6c8ac7c75b4d3e9d0"; + fetchSubmodules = true; + }; + libraryHaskellDepends = [ base mono-traversable text wcwidth ]; + license = lib.licenses.mit; +} |
