lol
at v192 22 lines 635 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.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}