bird3: 3.1.1 -> 3.1.2 (#411702)

This commit is contained in:
Florian Klink
2025-05-28 16:31:36 +03:00
committed by GitHub
+10 -5
View File
@@ -1,7 +1,8 @@
{
lib,
stdenv,
fetchurl,
fetchFromGitLab,
autoreconfHook,
flex,
bison,
readline,
@@ -11,14 +12,18 @@
stdenv.mkDerivation rec {
pname = "bird";
version = "3.1.1";
version = "3.1.2";
src = fetchurl {
url = "https://bird.nic.cz/download/bird-${version}.tar.gz";
hash = "sha256-KXJRl0/4g+TvA/zNbJEtEW7Un/Lxxjtm0dul8HCUREo=";
src = fetchFromGitLab {
domain = "gitlab.nic.cz";
owner = "labs";
repo = "bird";
rev = "v${version}";
hash = "sha256-3Ms9yozF/Ox/kSP9rzKvkrA0VBPQb1VjtbEInl8/KZM=";
};
nativeBuildInputs = [
autoreconfHook
flex
bison
];