tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ddar: fix build
Frederik Rietdijk
6 years ago
e66ceaa0
5ae314d9
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
tools
backup
ddar
default.nix
+2
-2
pkgs/tools/backup/ddar/default.nix
···
1
-
{ lib, python2, fetchFromGitHub, roundup }:
2
3
python2.pkgs.buildPythonApplication rec {
4
pname = "ddar";
···
26
nativeBuildInputs = with python2.pkgs; [ protobuf.protobuf ];
27
propagatedBuildInputs = with python2.pkgs; [ protobuf ];
28
29
-
checkInputs = [ roundup ];
30
31
checkPhase = ''
32
roundup t/basic-test.sh
···
1
+
{ lib, python2, fetchFromGitHub, roundup, ncurses }:
2
3
python2.pkgs.buildPythonApplication rec {
4
pname = "ddar";
···
26
nativeBuildInputs = with python2.pkgs; [ protobuf.protobuf ];
27
propagatedBuildInputs = with python2.pkgs; [ protobuf ];
28
29
+
checkInputs = [ roundup ncurses ];
30
31
checkPhase = ''
32
roundup t/basic-test.sh