linuxptp: 4.2 -> 4.3

Switch src from sourcefourge to Github.
Update homepage
This commit is contained in:
Markus Kowalewski 2024-06-27 14:12:38 +02:00
parent 5e0f77ae14
commit aaa50e707a

View File

@ -1,13 +1,15 @@
{ lib, stdenv, fetchurl, linuxHeaders } :
{ lib, stdenv, fetchFromGitHub, linuxHeaders } :
stdenv.mkDerivation rec {
pname = "linuxptp";
version = "4.2";
version = "4.3";
src = fetchurl {
url = "mirror://sourceforge/linuxptp/${pname}-${version}.tgz";
hash = "sha256-cOOOXSdk4CF0Q9pvFOiEb+QBpHIpOsE42EGcB6ZlRHo=";
src = fetchFromGitHub {
owner = "nwtime";
repo = "linuxptp";
rev = "v${version}";
hash = "sha256-FFBbbmVPP74p/OkqNXXgynBS/NcuPoYs3OCof11NZOI=";
};
postPatch = ''
@ -28,7 +30,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Implementation of the Precision Time Protocol (PTP) according to IEEE standard 1588 for Linux";
homepage = "https://linuxptp.sourceforge.net/";
homepage = "https://linuxptp.nwtime.org";
maintainers = [ maintainers.markuskowa ];
license = licenses.gpl2Only;
platforms = platforms.linux;