traceroute: add changelog to meta
This commit is contained in:
parent
d1ab48e82b
commit
29942b608f
1 changed files with 13 additions and 5 deletions
|
@ -1,4 +1,7 @@
|
|||
{ lib, stdenv, fetchurl }:
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchurl
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "traceroute";
|
||||
|
@ -9,17 +12,22 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "3669d22a34d3f38ed50caba18cd525ba55c5c00d5465f2d20d7472e5d81603b6";
|
||||
};
|
||||
|
||||
makeFlags = [ "prefix=$(out)" "LDFLAGS=-lm" "env=yes" ];
|
||||
makeFlags = [
|
||||
"prefix=$(out)"
|
||||
"LDFLAGS=-lm"
|
||||
"env=yes"
|
||||
];
|
||||
|
||||
preConfigure = ''
|
||||
sed -i 's@LIBS := \(.*\) -lm \(.*\)@LIBS := \1 \2@' Make.rules
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://traceroute.sourceforge.net/";
|
||||
description = "Tracks the route taken by packets over an IP network";
|
||||
license = lib.licenses.gpl2;
|
||||
maintainers = [ maintainers.koral ];
|
||||
homepage = "http://traceroute.sourceforge.net/";
|
||||
changelog = "https://sourceforge.net/projects/traceroute/files/traceroute/traceroute-${version}/";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ koral ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue