tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
nixbot: init at unstable-2016-10-09
Robin Gloster
9 years ago
e904bb48
6c9cc199
+27
2 changed files
expand all
collapse all
unified
split
pkgs
tools
misc
nixbot
default.nix
top-level
all-packages.nix
+25
pkgs/tools/misc/nixbot/default.nix
···
1
1
+
{ stdenv, python3Packages, fetchFromGitHub }:
2
2
+
3
3
+
python3Packages.buildPythonApplication rec {
4
4
+
name = "nixbot-unstable-2016-10-09";
5
5
+
6
6
+
src = fetchFromGitHub {
7
7
+
owner = "domenkozar";
8
8
+
repo = "nixbot";
9
9
+
rev = "dc490e4954cb08f0eff97f74ad39dedb54670aa9";
10
10
+
sha256 = "1l8rlhd2b7x5m79vb2vgszachygasv0pk8drnwgxyvsn0k88xcan";
11
11
+
};
12
12
+
13
13
+
propagatedBuildInputs = with python3Packages; [
14
14
+
pygit2 pyramid waitress github3_py
15
15
+
];
16
16
+
17
17
+
doCheck = false;
18
18
+
19
19
+
meta = with stdenv.lib; {
20
20
+
desciption = "Github bot for reviewing/testing pull requests with the help of Hydra";
21
21
+
maintainers = with maintainers; [ domenkozar fpletz globin ];
22
22
+
license = licenses.asl20;
23
23
+
homepage = https://github.com/domenkozar/nixbot;
24
24
+
};
25
25
+
}
+2
pkgs/top-level/all-packages.nix
···
2867
2867
2868
2868
nitrogen = callPackage ../tools/X11/nitrogen {};
2869
2869
2870
2870
+
nixbot = callPackage ../tools/misc/nixbot {};
2871
2871
+
2870
2872
nkf = callPackage ../tools/text/nkf {};
2871
2873
2872
2874
nlopt = callPackage ../development/libraries/nlopt {};