Unverified Commit 8b173e8b authored by Jörg Thalheim's avatar Jörg Thalheim Committed by GitHub
Browse files

nixVersions.nix_2_19: drop (#354148)

parents 98dece1b 6077aa2a
Loading
Loading
Loading
Loading
+15 −4
Original line number Diff line number Diff line
@@ -9,12 +9,13 @@
  meson,
  ninja,
  stdenv,
  fetchpatch,
}: let
  src = fetchFromGitHub {
    owner = "bluskript";
    repo = "nix-inspect";
    rev = "86f636b1e01579b3a63b2c778c21a818b00c3d1e";
    hash = "sha256-G5Md4ghux4LBRkPE8vzLTUWxzlQ7s1xKxZ8i3ICWZU8=";
    rev = "c55921e1d1cf980ff6351273fde6cedd5d8fa320";
    hash = "sha256-Upz+fnWJjzt5WokjO/iaiPbqiwSrqpWjrpcFOqQ4p0E=";
  };

  workerPackage = stdenv.mkDerivation {
@@ -22,14 +23,24 @@

    pname = "nix-inspect-worker";
    version = "0.1.2";
    sourceRoot = "${src.name}/worker";
    postPatch = ''
      cd worker
    '';

    nativeBuildInputs = [meson ninja pkg-config];

    # TODO: Remove this patch when this pull request is merged and released: https://github.com/bluskript/nix-inspect/pull/18
    patches = [
      (fetchpatch {
        url = "https://github.com/bluskript/nix-inspect/commit/e1e05883d42ce0c7029a3d69dce14ae9d057aae6.patch";
        sha256 = "sha256-bHo+sRc9pICK0ccdiWLRNNvr8QjNCrlcwMvmUHznAtg=";
      })
    ];

    buildInputs = [
      boost
      nlohmann_json
      nixVersions.nix_2_19.dev
      nixVersions.nix_2_24.dev
    ];

    mesonBuildType = "release";
+0 −1
Original line number Diff line number Diff line
@@ -74,7 +74,6 @@ in stdenv.mkDerivation (finalAttrs: {
    latest = localRepoCheck nixVersions.latest;
    git = localRepoCheck nixVersions.git;
    nix_2_18 = localRepoCheck nixVersions.nix_2_18;
    nix_2_19 = localRepoCheck nixVersions.nix_2_19;
  };

  meta = {
+0 −7
Original line number Diff line number Diff line
@@ -6,7 +6,6 @@
, libgit2
, callPackage
, fetchFromGitHub
, fetchpatch
, fetchpatch2
, runCommand
, buildPackages
@@ -179,12 +178,6 @@ in lib.makeExtensible (self: ({
    self_attribute_name = "nix_2_18";
  };

  nix_2_19 = common {
    version = "2.19.7";
    hash = "sha256-CkT1SNwRYYQdN2X4cTt1WX3YZfKZFWf7O1YTEo1APfc=";
    self_attribute_name = "nix_2_19";
  };

  nix_2_24 = common {
    version = "2.24.10";
    hash = "sha256-XdeVy1/d6DEIYb3nOA6JIYF4fwMKNxtwJMgT3pHi+ko=";