nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

hex: correct version handling

+3 -3
+3 -3
pkgs/development/beam-modules/hex/default.nix
··· 7 7 }; 8 8 9 9 pkg = self: stdenv.mkDerivation rec { 10 - name = "hex"; 11 - version = "v0.17.1"; 10 + pname = "hex"; 11 + version = "0.17.1"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "hexpm"; 15 15 repo = "hex"; 16 - rev = "${version}"; 16 + rev = "v${version}"; 17 17 sha256 = "1s4asar1mcavzj3w37jcz243ka0z5jm0r42yws3h4aagawxxg02z"; 18 18 }; 19 19