inih: fix version parsing with nix-env

main
Sandro Jäckel 2 years ago
parent 9b310a73db
commit f5e6968955
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
  1. 6
      pkgs/development/libraries/inih/default.nix

@ -2,12 +2,12 @@
stdenv.mkDerivation rec {
pname = "inih";
version = "r53";
version = "53";
src = fetchFromGitHub {
owner = "benhoyt";
repo = pname;
rev = version;
rev = "r${version}";
sha256 = "0dqf5j2sw4hq68rqvxbrsf44ygfzx9ypiyzipk4cvp9aimbvsbc6";
};
@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Simple .INI file parser in C, good for embedded systems";
homepage = "https://github.com/benhoyt/inih";
changelog = "https://github.com/benhoyt/inih/releases/tag/${version}";
changelog = "https://github.com/benhoyt/inih/releases/tag/r${version}";
license = licenses.bsd3;
maintainers = with maintainers; [ TredwellGit ];
platforms = platforms.all;

Loading…
Cancel
Save