fix: remove some mentions to removed update scripts
This commit is contained in:
parent
a793eae8fa
commit
e6a9076f9c
|
@ -1,12 +1,4 @@
|
|||
{ makeSetupHook, tests }:
|
||||
{ makeSetupHook }:
|
||||
|
||||
# See the header comment in ../setup-hooks/install-shell-files.sh for example usage.
|
||||
let
|
||||
setupHook = makeSetupHook { name = "install-shell-files"; }
|
||||
../setup-hooks/install-shell-files.sh;
|
||||
|
||||
in setupHook.overrideAttrs (oldAttrs: {
|
||||
passthru = (oldAttrs.passthru or { }) // {
|
||||
tests = tests.install-shell-files;
|
||||
};
|
||||
})
|
||||
makeSetupHook { name = "install-shell-files"; }
|
||||
../setup-hooks/install-shell-files.sh
|
||||
|
|
|
@ -10,7 +10,7 @@ else
|
|||
, uiToolkits ? [ ] # can contain "ncurses" and/or "qt5"
|
||||
, buildDocs ? !(isMinimalBuild || (uiToolkits == [ ])), darwin
|
||||
# , libsForQt5
|
||||
, gitUpdater }:
|
||||
}:
|
||||
|
||||
let
|
||||
inherit (darwin.apple_sdk.frameworks) CoreServices SystemConfiguration;
|
||||
|
@ -151,12 +151,6 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
|
||||
doCheck = false; # fails
|
||||
|
||||
passthru.updateScript = gitUpdater {
|
||||
url = "https://gitlab.kitware.com/cmake/cmake.git";
|
||||
rev-prefix = "v";
|
||||
ignoredVersions = "-"; # -rc1 and friends
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = "https://cmake.org/";
|
||||
description = "Cross-platform, open-source build system generator";
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
{ lib, stdenv, fetchurl, getopt, util-linuxMinimal, which, gperf
|
||||
, nix-update-script }:
|
||||
{ lib, stdenv, fetchurl, getopt, util-linuxMinimal, which, gperf }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libseccomp";
|
||||
|
@ -33,7 +32,7 @@ stdenv.mkDerivation rec {
|
|||
tar -zcf $pythonsrc --mtime="@$SOURCE_DATE_EPOCH" --sort=name --transform s/tmp-pythonsrc/python-foundationdb/ ./tmp-pythonsrc/
|
||||
'';
|
||||
|
||||
passthru = { updateScript = nix-update-script { }; };
|
||||
passthru = { };
|
||||
|
||||
meta = with lib; {
|
||||
description = "High level library for the Linux Kernel seccomp filter";
|
||||
|
|
Loading…
Reference in a new issue