about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/integers
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2021-01-21 10:24:35 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2021-01-21 10:30:13 +1000
commit8488ebab05929b1d65c12a9294661478f01a1a55 (patch)
treecd71625abbb9ade82749f2f43d5d22b24c7f8ae9 /pkgs/development/ocaml-modules/integers
parent569987c1be8d42302a4238b3dc39d16ac70bdfb6 (diff)
ocamlPackages.*: use spaces for indentation
Diffstat (limited to 'pkgs/development/ocaml-modules/integers')
-rw-r--r--pkgs/development/ocaml-modules/integers/default.nix24
1 files changed, 12 insertions, 12 deletions
diff --git a/pkgs/development/ocaml-modules/integers/default.nix b/pkgs/development/ocaml-modules/integers/default.nix
index ca14c3ca87395..ad6f1f9f813d3 100644
--- a/pkgs/development/ocaml-modules/integers/default.nix
+++ b/pkgs/development/ocaml-modules/integers/default.nix
@@ -1,18 +1,18 @@
 { lib, fetchzip, buildDunePackage }:
 
 buildDunePackage rec {
-	pname = "integers";
-	version = "0.4.0";
+  pname = "integers";
+  version = "0.4.0";
 
-	src = fetchzip {
-		url = "https://github.com/ocamllabs/ocaml-integers/archive/${version}.tar.gz";
-		sha256 = "0yp3ab0ph7mp5741g7333x4nx8djjvxzpnv3zvsndyzcycspn9dd";
-	};
+  src = fetchzip {
+    url = "https://github.com/ocamllabs/ocaml-integers/archive/${version}.tar.gz";
+    sha256 = "0yp3ab0ph7mp5741g7333x4nx8djjvxzpnv3zvsndyzcycspn9dd";
+  };
 
-	meta = {
-		description = "Various signed and unsigned integer types for OCaml";
-		license = lib.licenses.mit;
-		homepage = "https://github.com/ocamllabs/ocaml-integers";
-		maintainers = [ lib.maintainers.vbgl ];
-	};
+  meta = {
+    description = "Various signed and unsigned integer types for OCaml";
+    license = lib.licenses.mit;
+    homepage = "https://github.com/ocamllabs/ocaml-integers";
+    maintainers = [ lib.maintainers.vbgl ];
+  };
 }