nixbot: init at unstable-2016-10-09

+27
+25
pkgs/tools/misc/nixbot/default.nix
··· 1 + { stdenv, python3Packages, fetchFromGitHub }: 2 + 3 + python3Packages.buildPythonApplication rec { 4 + name = "nixbot-unstable-2016-10-09"; 5 + 6 + src = fetchFromGitHub { 7 + owner = "domenkozar"; 8 + repo = "nixbot"; 9 + rev = "dc490e4954cb08f0eff97f74ad39dedb54670aa9"; 10 + sha256 = "1l8rlhd2b7x5m79vb2vgszachygasv0pk8drnwgxyvsn0k88xcan"; 11 + }; 12 + 13 + propagatedBuildInputs = with python3Packages; [ 14 + pygit2 pyramid waitress github3_py 15 + ]; 16 + 17 + doCheck = false; 18 + 19 + meta = with stdenv.lib; { 20 + desciption = "Github bot for reviewing/testing pull requests with the help of Hydra"; 21 + maintainers = with maintainers; [ domenkozar fpletz globin ]; 22 + license = licenses.asl20; 23 + homepage = https://github.com/domenkozar/nixbot; 24 + }; 25 + }
+2
pkgs/top-level/all-packages.nix
··· 2867 2867 2868 2868 nitrogen = callPackage ../tools/X11/nitrogen {}; 2869 2869 2870 + nixbot = callPackage ../tools/misc/nixbot {}; 2871 + 2870 2872 nkf = callPackage ../tools/text/nkf {}; 2871 2873 2872 2874 nlopt = callPackage ../development/libraries/nlopt {};