openbgpd: 6.7p0 -> 6.8p0
This commit is contained in:
parent
c0bcfebaef
commit
aa98d660e7
|
@ -1,27 +1,27 @@
|
||||||
{ stdenv, fetchFromGitHub, autoconf, automake
|
{ stdenv, fetchFromGitHub, autoconf, automake, libtool, m4, yacc }:
|
||||||
, libtool, m4, yacc }:
|
|
||||||
|
|
||||||
let
|
let
|
||||||
openbsd_version = "OPENBSD_6_7"; # This has to be equal to ${src}/OPENBSD_BRANCH
|
openbsd_version =
|
||||||
|
"OPENBSD_6_8"; # This has to be equal to ${src}/OPENBSD_BRANCH
|
||||||
openbsd = fetchFromGitHub {
|
openbsd = fetchFromGitHub {
|
||||||
|
name = "portable";
|
||||||
owner = "openbgpd-portable";
|
owner = "openbgpd-portable";
|
||||||
repo = "openbgpd-openbsd";
|
repo = "openbgpd-openbsd";
|
||||||
rev = openbsd_version;
|
rev = openbsd_version;
|
||||||
sha256 = "sha256-YJTHUsn6s4xLcLQuxCLmEkIE8ozxzooj71cJ5Wl+0lI=";
|
sha256 = "sha256-vCVK5k4g6aW2z2fg7Kv0uvkX7f34aRc8K2myb3jjl6w=";
|
||||||
};
|
};
|
||||||
in stdenv.mkDerivation rec {
|
in stdenv.mkDerivation rec {
|
||||||
pname = "opengpd";
|
pname = "opengpd";
|
||||||
version = "6.7p0";
|
version = "6.8p0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "openbgpd-portable";
|
owner = "openbgpd-portable";
|
||||||
repo = "openbgpd-portable";
|
repo = "openbgpd-portable";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "sha256-10DfK45BsSHeyANB0OJLKog1mEj0mydXSDAT9G6u1gM";
|
sha256 = "sha256-TKs6tt/SCWes6kYAGIrSShZgOLf7xKh26xG3Zk7wCCw=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs =
|
nativeBuildInputs = [ autoconf automake libtool m4 yacc ];
|
||||||
[ autoconf automake libtool m4 yacc ];
|
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
mkdir ./openbsd
|
mkdir ./openbsd
|
||||||
|
@ -36,7 +36,8 @@ in stdenv.mkDerivation rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A free implementation of the Border Gateway Protocol, Version 4. It allows ordinary machines to be used as routers exchanging routes with other systems speaking the BGP protocol";
|
description =
|
||||||
|
"A free implementation of the Border Gateway Protocol, Version 4. It allows ordinary machines to be used as routers exchanging routes with other systems speaking the BGP protocol";
|
||||||
license = licenses.isc;
|
license = licenses.isc;
|
||||||
homepage = "http://www.openbgpd.org/";
|
homepage = "http://www.openbgpd.org/";
|
||||||
maintainers = with maintainers; [ kloenk ];
|
maintainers = with maintainers; [ kloenk ];
|
||||||
|
|
Loading…
Reference in New Issue