tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
git-buildpackage: setup passthru.updateScript
Guilhem Saurel
5 months ago
ca8f87c6
5b48b63e
+9
-1
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
gi
git-buildpackage
package.nix
+9
-1
pkgs/by-name/gi/git-buildpackage/package.nix
···
1
1
{
2
2
lib,
3
3
+
stdenv,
3
4
4
5
coreutils,
5
6
fetchFromGitHub,
7
7
+
nix-update-script,
6
8
python3Packages,
7
7
-
stdenv,
8
9
9
10
# nativeCheckInputs
10
11
debian-devscripts,
···
76
77
# [Errno 30] Read-only file system: '/does'
77
78
"tests.doctests.test_GitRepository.test_create_noperm"
78
79
];
80
80
+
81
81
+
passthru.updateScript = nix-update-script {
82
82
+
extraArgs = [
83
83
+
"--version-regex"
84
84
+
"debian/(.*)"
85
85
+
];
86
86
+
};
79
87
80
88
meta = {
81
89
description = "Suite to help with maintaining Debian packages in Git repositories";