2017-11-02 16:21:16 -07:00
|
|
|
{ stdenv, fetchurl }:
|
2016-08-02 15:56:10 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-07-15 07:03:54 -07:00
|
|
|
version = "1.2.1";
|
2016-08-02 15:56:10 -07:00
|
|
|
name = "htpdate-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2017-11-02 16:21:16 -07:00
|
|
|
url = "http://www.vervest.org/htp/archive/c/${name}.tar.xz";
|
2019-07-15 07:03:54 -07:00
|
|
|
sha256 = "1gqw3lg4wwkn8snf4pf21s3qidhb4h791f2ci7i7i0d6kd86jv0q";
|
2016-08-02 15:56:10 -07:00
|
|
|
};
|
|
|
|
|
2017-11-02 16:21:16 -07:00
|
|
|
makeFlags = [
|
|
|
|
"INSTALL=install"
|
2017-11-25 10:43:57 -08:00
|
|
|
"STRIP=${stdenv.cc.bintools.targetPrefix}strip"
|
2016-08-02 15:56:10 -07:00
|
|
|
"prefix=$(out)"
|
|
|
|
];
|
|
|
|
|
2017-11-02 16:21:16 -07:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2016-08-02 15:56:10 -07:00
|
|
|
description = "Utility to fetch time and set the system clock over HTTP";
|
|
|
|
homepage = http://www.vervest.org/htp/;
|
2018-03-19 14:18:22 -07:00
|
|
|
platforms = platforms.linux;
|
2017-11-02 16:21:16 -07:00
|
|
|
license = licenses.gpl2Plus;
|
2016-08-02 15:56:10 -07:00
|
|
|
};
|
|
|
|
}
|