checkip: add changelog to meta

authored by Fabian Affolter and committed by GitHub d8f440ad 1d4afe48

+8 -2
+8 -2
pkgs/tools/networking/checkip/default.nix
··· 10 src = fetchFromGitHub { 11 owner = "jreisinger"; 12 repo = pname; 13 - rev = "v${version}"; 14 - sha256 = "sha256-U0jHwKmGHpaHSiOYDeYCXiufw0JjzAmhBnINmFsqOJo="; 15 }; 16 17 vendorHash = "sha256-9/z1mtZGqrvcvq8cWBpYN7kaPHaPqtyMwMNxuRRP4Cs="; 18 19 # Requires network 20 doCheck = false; 21 22 meta = with lib; { 23 description = "CLI tool that checks an IP address using various public services"; 24 homepage = "https://github.com/jreisinger/checkip"; 25 license = licenses.asl20; 26 maintainers = with maintainers; [ fab ]; 27 };
··· 10 src = fetchFromGitHub { 11 owner = "jreisinger"; 12 repo = pname; 13 + rev = "refs/tags/v${version}"; 14 + hash = "sha256-U0jHwKmGHpaHSiOYDeYCXiufw0JjzAmhBnINmFsqOJo="; 15 }; 16 17 vendorHash = "sha256-9/z1mtZGqrvcvq8cWBpYN7kaPHaPqtyMwMNxuRRP4Cs="; 18 19 + ldflags = [ 20 + "-w" 21 + "-s" 22 + ]; 23 + 24 # Requires network 25 doCheck = false; 26 27 meta = with lib; { 28 description = "CLI tool that checks an IP address using various public services"; 29 homepage = "https://github.com/jreisinger/checkip"; 30 + changelog = "https://github.com/jreisinger/checkip/releases/tag/v${version}"; 31 license = licenses.asl20; 32 maintainers = with maintainers; [ fab ]; 33 };