Merge pull request #136669 from heph2/update/telescope

telescope: 0.4.1 -> 0.5.1
This commit is contained in:
Stig 2021-09-06 16:13:31 +02:00 committed by GitHub
commit a1a6b51ca4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,23 +1,27 @@
{ stdenv
, lib
, fetchurl
, fetchFromGitHub
, pkg-config
, bison
, libevent
, libressl
, ncurses
, autoreconfHook
}:
stdenv.mkDerivation rec {
pname = "telescope";
version = "0.4.1";
version = "0.5.1";
src = fetchurl {
url = "https://github.com/omar-polo/telescope/releases/download/${version}/telescope-${version}.tar.gz";
sha256 = "086zps4nslv5isfw1b5gvms7vp3fglm7x1a6ks0h0wxarzj350bl";
src = fetchFromGitHub {
owner = "omar-polo";
repo = pname;
rev = version;
sha256 = "0dd09r7b2gm9nv1q67yq4zk9f4v0fwqr5lw51crki9ii82gmj2h8";
};
nativeBuildInputs = [
autoreconfHook
pkg-config
bison
];