Update package version to fix build

The build for the 2.1.1 release is broken, so I updated the packge
version to use the newer commits to fix the build.

+5 -6
+5 -6
pkgs/os-specific/linux/ply/default.nix
··· 1 1 { lib, stdenv, kernel, fetchFromGitHub, autoreconfHook, bison, flex, p7zip, rsync }: 2 2 3 - let 4 - version = "2.1.1"; 5 - in stdenv.mkDerivation { 3 + stdenv.mkDerivation rec { 6 4 pname = "ply"; 7 - inherit version; 5 + version = "2.1.1-${lib.substring 0 7 src.rev}"; 6 + 8 7 nativeBuildInputs = [ autoreconfHook flex bison p7zip rsync ]; 9 8 10 9 src = fetchFromGitHub { 11 10 owner = "iovisor"; 12 11 repo = "ply"; 13 - rev = version; 14 - sha256 = "0mfnfczk6kw6p15nx5l735qmcnb0pkix7ngq0j8nndg7r2fsckah"; 12 + rev = "e25c9134b856cc7ffe9f562ff95caf9487d16b59"; 13 + sha256 = "1178z7vvnjwnlxc98g2962v16878dy7bd0b2njsgn4vqgrnia7i5"; 15 14 }; 16 15 17 16 preAutoreconf = ''