]> Git — Sourcephile - sourcephile-nix.git/blob - nixpkgs/overlays/iodine.nix
+dev/update(julm-nix): pin latest
[sourcephile-nix.git] / nixpkgs / overlays / iodine.nix
1 { ... }:
2 self: super: {
3 iodine = super.iodine.overrideAttrs (oldAttrs: {
4 version = "unstable-2022-06-18";
5 nativeBuildInputs =
6 oldAttrs.nativeBuildInputs or [ ]
7 ++ (with self; [
8 pkg-config
9 systemd
10 ]);
11 src = super.fetchFromGitHub {
12 owner = "yarrick";
13 repo = "iodine";
14 rev = "df49fd6f3d9030662374bfbdcca3e74327084f5e";
15 sha256 = "sha256-+hjeeCn88ZL0EYX+bijfBWprZUFPrvr9DkJLFkkNqkU=";
16 };
17 });
18 }