lol

libfaketime: new package

Report faked system time to programs without having to change the
system-wide time.

http://www.code-wizards.com/projects/libfaketime/

+24
+22
pkgs/development/libraries/libfaketime/default.nix
··· 1 + { stdenv, fetchurl }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "libfaketime-0.9.6"; 5 + 6 + src = fetchurl { 7 + url = "http://www.code-wizards.com/projects/libfaketime/${name}.tar.gz"; 8 + sha256 = "1dw2lqsv2iqwxg51mdn25b4fjj3v357s0mc6ahxawqp210krg29s"; 9 + }; 10 + 11 + preBuild = '' 12 + makeFlagsArray+=(PREFIX="$out" LIBDIRNAME=/lib) 13 + ''; 14 + 15 + meta = with stdenv.lib; { 16 + description = "Report faked system time to programs without having to change the system-wide time"; 17 + homepage = http://www.code-wizards.com/projects/libfaketime/; 18 + license = licenses.gpl2; 19 + platforms = platforms.all; 20 + maintainers = [ maintainers.bjornfor ]; 21 + }; 22 + }
+2
pkgs/top-level/all-packages.nix
··· 5656 5656 5657 5657 libetpan = callPackage ../development/libraries/libetpan { }; 5658 5658 5659 + libfaketime = callPackage ../development/libraries/libfaketime { }; 5660 + 5659 5661 libfm = callPackage ../development/libraries/libfm { }; 5660 5662 libfm-extra = callPackage ../development/libraries/libfm { 5661 5663 extraOnly = true;