So the line of rev = "v${version}";
has an extra v
in it which corresponded to the repository I copied to get started but this isn't needed for my repository.
my correct line reads rev = "${version}"
All about NixOS - https://nixos.org/
So the line of rev = "v${version}";
has an extra v
in it which corresponded to the repository I copied to get started but this isn't needed for my repository.
my correct line reads rev = "${version}"
You can simplify that further to just rev = version
...