patches and low-level development discussion
 help / color / mirror / code / Atom feed
f3ed081cf37166d539ec4dee06bb1febfb67877e blob 489 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 
# SPDX-License-Identifier: MIT
# SPDX-FileCopyrightText: 2022 Alyssa Ross <hi@alyssa.is>

{ config ? import ../../nix/eval-config.nix {} }: config.pkgs.callPackage (
{ lib, stdenv, meson, ninja }:

let
  inherit (lib) cleanSource cleanSourceWith hasSuffix;
in

stdenv.mkDerivation {
  name = "resolve_in_root";

  src = cleanSourceWith {
    filter = name: _type: !(hasSuffix ".nix" name);
    src = cleanSource ./.;
  };

  nativeBuildInputs = [ meson ninja ];

  doCheck = true;
}
) { }
debug log:

solving f3ed081 ...
found f3ed081 in https://spectrum-os.org/lists/archives/spectrum-devel/20221010232909.1953738-17-hi@alyssa.is/

applying [1/1] https://spectrum-os.org/lists/archives/spectrum-devel/20221010232909.1953738-17-hi@alyssa.is/
diff --git a/tools/resolve_in_root/default.nix b/tools/resolve_in_root/default.nix
new file mode 100644
index 0000000..f3ed081

Checking patch tools/resolve_in_root/default.nix...
Applied patch tools/resolve_in_root/default.nix cleanly.

index at:
100644 f3ed081cf37166d539ec4dee06bb1febfb67877e	tools/resolve_in_root/default.nix

Code repositories for project(s) associated with this public inbox

	https://spectrum-os.org/git/crosvm
	https://spectrum-os.org/git/doc
	https://spectrum-os.org/git/mktuntap
	https://spectrum-os.org/git/nixpkgs
	https://spectrum-os.org/git/spectrum
	https://spectrum-os.org/git/ucspi-vsock
	https://spectrum-os.org/git/www

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).