We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cc679fa + b562125 commit 578b80eCopy full SHA for 578b80e
pkgs/by-name/de/debian-devscripts/package.nix
@@ -1,7 +1,7 @@
1
{
2
lib,
3
stdenv,
4
- fetchurl,
+ fetchFromGitLab,
5
fetchpatch,
6
xz,
7
dpkg,
@@ -29,11 +29,14 @@ let
29
in
30
stdenv.mkDerivation (finalAttrs: {
31
pname = "debian-devscripts";
32
- version = "2.25.14";
+ version = "2.25.15";
33
34
- src = fetchurl {
35
- url = "mirror://debian/pool/main/d/devscripts/devscripts_${finalAttrs.version}.tar.xz";
36
- hash = "sha256-z95BOgGNYFvleqCv8e6B7Tl91xPzgQHkcxIg55maXvQ=";
+ src = fetchFromGitLab {
+ domain = "salsa.debian.org";
+ owner = "debian";
37
+ repo = "devscripts";
38
+ tag = "v${finalAttrs.version}";
39
+ hash = "sha256-s2QSfJyHsFr1eiia/yFj3jsS5k38xNewEe/g5PFpqag=";
40
};
41
42
patches = [
0 commit comments