vcsh: 2.0.8 -> 2.0.10

Diff: RichiH/vcsh@v2.0.8...v2.0.10

Changelog: https://github.com/RichiH/vcsh/blob/v2.0.10/changelog

eiraniko c249aba2 2d808017

+10 -4
+10 -4
pkgs/by-name/vc/vcsh/package.nix
··· 2 2 lib, 3 3 stdenv, 4 4 fetchurl, 5 + autoconf, 6 + automake, 5 7 makeWrapper, 6 8 pkg-config, 9 + unzip, 7 10 git, 8 11 perlPackages, 9 12 }: 10 13 11 14 stdenv.mkDerivation (finalAttrs: { 12 15 pname = "vcsh"; 13 - version = "2.0.8"; 16 + version = "2.0.10"; 14 17 15 18 src = fetchurl { 16 - url = "https://github.com/RichiH/vcsh/releases/download/v${finalAttrs.version}/vcsh-${finalAttrs.version}.tar.xz"; 17 - sha256 = "sha256-VgRA3v5PIKwizmXoc8f/YMoMCDGFJK/m2uhq3EsT1xQ="; 19 + url = "https://github.com/RichiH/vcsh/releases/download/v${finalAttrs.version}/vcsh-${finalAttrs.version}.zip"; 20 + hash = "sha256-M/UME2kNCxwzngKXMYp0cdps7LWVwoS2I/mTrvPts7g="; 18 21 }; 19 22 20 23 nativeBuildInputs = [ 24 + autoconf 25 + automake 26 + makeWrapper 21 27 pkg-config 22 - makeWrapper 28 + unzip 23 29 ]; 24 30 25 31 buildInputs = [ git ];