nix: use nixfmt-rfc-style
[sourcephile-nix.git] / nixpkgs / overlays / iodine.nix
index 30d23c81821a96a6c4d23f077ba467d9289e2851..01c55440913b3d43aeced3d027f210cfb9f89c95 100644 (file)
@@ -1,12 +1,12 @@
 self: super: {
-  iodine = super.iodine.overrideAttrs (oldAttrs:  {
-      version = "unstable-2022-06-18";
-      nativeBuildInputs = oldAttrs.nativeBuildInputs or [] ++ (with self; [pkg-config systemd]);
-      src = super.fetchFromGitHub {
-        owner = "yarrick";
-        repo = "iodine";
-        rev = "df49fd6f3d9030662374bfbdcca3e74327084f5e";
-        sha256 = "sha256-+hjeeCn88ZL0EYX+bijfBWprZUFPrvr9DkJLFkkNqkU=";
-      };
+  iodine = super.iodine.overrideAttrs (oldAttrs: {
+    version = "unstable-2022-06-18";
+    nativeBuildInputs = oldAttrs.nativeBuildInputs or [ ] ++ (with self; [ pkg-config systemd ]);
+    src = super.fetchFromGitHub {
+      owner = "yarrick";
+      repo = "iodine";
+      rev = "df49fd6f3d9030662374bfbdcca3e74327084f5e";
+      sha256 = "sha256-+hjeeCn88ZL0EYX+bijfBWprZUFPrvr9DkJLFkkNqkU=";
+    };
   });
 }