about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2019-08-15 09:05:53 +0000
committerVincent Laporte <vbgl@users.noreply.github.com>2019-08-21 05:07:46 +0000
commit59cf0772c2e9fb6e65b32abdbc5da104d19e2366 (patch)
tree771bb6248b586dcb75b95b8b9f3fb1e627771d1f /pkgs/development
parenta473b6efc528d99ce0a74cc19982d01df2e847a1 (diff)
downloadnixlib-59cf0772c2e9fb6e65b32abdbc5da104d19e2366.tar
nixlib-59cf0772c2e9fb6e65b32abdbc5da104d19e2366.tar.gz
nixlib-59cf0772c2e9fb6e65b32abdbc5da104d19e2366.tar.bz2
nixlib-59cf0772c2e9fb6e65b32abdbc5da104d19e2366.tar.lz
nixlib-59cf0772c2e9fb6e65b32abdbc5da104d19e2366.tar.xz
nixlib-59cf0772c2e9fb6e65b32abdbc5da104d19e2366.tar.zst
nixlib-59cf0772c2e9fb6e65b32abdbc5da104d19e2366.zip
ocamlPackages.charInfo_width: init at 1.1.0
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/ocaml-modules/charInfo_width/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/charInfo_width/default.nix b/pkgs/development/ocaml-modules/charInfo_width/default.nix
new file mode 100644
index 000000000000..7a78573412fe
--- /dev/null
+++ b/pkgs/development/ocaml-modules/charInfo_width/default.nix
@@ -0,0 +1,19 @@
+{ lib, fetchzip, buildDunePackage, camomile, result }:
+
+buildDunePackage rec {
+  pname = "charInfo_width";
+  version = "1.1.0";
+  src = fetchzip {
+    url = "https://bitbucket.org/zandoye/charinfo_width/get/${version}.tar.bz2";
+    sha256 = "19mnq9a1yr16srqs8n6hddahr4f9d2gbpmld62pvlw1ps7nfrp9w";
+  };
+
+  propagatedBuildInputs = [ camomile result ];
+
+  meta = {
+    homepage = "https://bitbucket.org/zandoye/charinfo_width/";
+    description = "Determine column width for a character";
+    license = lib.licenses.mit;
+    maintainers = [ lib.maintainers.vbgl ];
+  };
+}