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