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