tlsdate: add version 0.0.12
This commit is contained in:
parent
0e8187b89f
commit
263a179946
41
pkgs/tools/networking/tlsdate/default.nix
Normal file
41
pkgs/tools/networking/tlsdate/default.nix
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
{ stdenv, fetchgit
|
||||||
|
, autoconf
|
||||||
|
, automake
|
||||||
|
, libevent
|
||||||
|
, libtool
|
||||||
|
, pkgconfig
|
||||||
|
, openssl
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "tlsdate-0.0.12";
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url = https://github.com/ioerror/tlsdate;
|
||||||
|
rev = "fd04f48ed60eb773c8e34d27ef2ee12ee7559a41";
|
||||||
|
sha256 = "d97b7cc6fe64799c12c31a9ebd3a69c9bc954de2eaa7f70d113d39544472854d";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
autoconf
|
||||||
|
automake
|
||||||
|
libevent
|
||||||
|
libtool
|
||||||
|
pkgconfig
|
||||||
|
openssl
|
||||||
|
];
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
export COMPILE_DATE=0
|
||||||
|
./autogen.sh
|
||||||
|
'';
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Secure parasitic rdate replacement";
|
||||||
|
homepage = https://github.com/ioerror/tlsdate;
|
||||||
|
platforms = stdenv.lib.platforms.all;
|
||||||
|
maintainers = [ stdenv.lib.maintainers.tv ];
|
||||||
|
};
|
||||||
|
}
|
@ -2623,6 +2623,8 @@ let
|
|||||||
|
|
||||||
tiny8086 = callPackage ../applications/virtualization/8086tiny { };
|
tiny8086 = callPackage ../applications/virtualization/8086tiny { };
|
||||||
|
|
||||||
|
tlsdate = callPackage ../tools/networking/tlsdate { };
|
||||||
|
|
||||||
tmpwatch = callPackage ../tools/misc/tmpwatch { };
|
tmpwatch = callPackage ../tools/misc/tmpwatch { };
|
||||||
|
|
||||||
tmux = callPackage ../tools/misc/tmux { };
|
tmux = callPackage ../tools/misc/tmux { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user