procps-ng: switch URL style to (hopefully) fix problems with hash
See: https://github.com/NixOS/nixpkgs/issues/39154 Not sure why we're seeing that behavior re:fetchFromGitLab, but for now use a likely-to-be-stable URL instead. Fixes #39154. (although the issue warrants some additional investigation IMO)
This commit is contained in:
parent
54c6a9c710
commit
dde9c099e9
@ -1,14 +1,12 @@
|
|||||||
{ lib, stdenv, fetchFromGitLab, ncurses, libtool, gettext, autoconf, automake, pkgconfig }:
|
{ lib, stdenv, fetchurl, ncurses, libtool, gettext, autoconf, automake, pkgconfig }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "procps-${version}";
|
name = "procps-${version}";
|
||||||
version = "3.3.14";
|
version = "3.3.14";
|
||||||
|
|
||||||
src = fetchFromGitLab {
|
src = fetchurl {
|
||||||
owner ="procps-ng";
|
url = "https://gitlab.com/procps-ng/procps/-/archive/v${version}/procps-v${version}.tar.bz2";
|
||||||
repo = "procps";
|
sha256 = "0igvsl3s7m5ygxgypzksk4cp2wkvv3lk49s7i9m5wbimyakmr0vf";
|
||||||
rev = "v${version}";
|
|
||||||
sha256 = "0l2xfm3vr8qpzvdnkcvmfj1rdw6lxx840zw9vp0z9f008y5fc31g";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ ncurses ];
|
buildInputs = [ ncurses ];
|
||||||
|
Loading…
Reference in New Issue
Block a user