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.
This commit is contained in:
Joseph Crail 2021-08-17 22:42:58 -07:00
parent cebb663086
commit 637bb5d085

View File

@ -1,17 +1,16 @@
{ lib, stdenv, kernel, fetchFromGitHub, autoreconfHook, bison, flex, p7zip, rsync }:
let
version = "2.1.1";
in stdenv.mkDerivation {
stdenv.mkDerivation rec {
pname = "ply";
inherit version;
version = "2.1.1-${lib.substring 0 7 src.rev}";
nativeBuildInputs = [ autoreconfHook flex bison p7zip rsync ];
src = fetchFromGitHub {
owner = "iovisor";
repo = "ply";
rev = version;
sha256 = "0mfnfczk6kw6p15nx5l735qmcnb0pkix7ngq0j8nndg7r2fsckah";
rev = "e25c9134b856cc7ffe9f562ff95caf9487d16b59";
sha256 = "1178z7vvnjwnlxc98g2962v16878dy7bd0b2njsgn4vqgrnia7i5";
};
preAutoreconf = ''