Unverified Commit a21443bf authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

gn1924: drop (#353310)

parents d527044f bfca4e1e
Loading
Loading
Loading
Loading
+40 −15
Original line number Diff line number Diff line
{ stdenv, lib, fetchgit, fetchpatch, cctools, darwin, writeText
, ninja, python3
, ...
{
  stdenv,
  lib,
  fetchgit,
  fetchpatch,
  cctools,
  darwin,
  writeText,
  ninja,
  python3,
  ...
}:

{ rev, revNum, version, sha256 }:
{
  rev,
  revNum,
  version,
  sha256,
}:

let
  revShort = builtins.substring 0 7 rev;
@@ -17,7 +30,8 @@ let
    #endif  // OUT_LAST_COMMIT_POSITION_H_
  '';

in stdenv.mkDerivation {
in
stdenv.mkDerivation {
  pname = "gn-unstable";
  inherit version;

@@ -36,8 +50,14 @@ in stdenv.mkDerivation {
    })
  ];

  nativeBuildInputs = [ ninja python3 ];
  buildInputs = lib.optionals stdenv.hostPlatform.isDarwin (with darwin; with apple_sdk.frameworks; [
  nativeBuildInputs = [
    ninja
    python3
  ];
  buildInputs = lib.optionals stdenv.hostPlatform.isDarwin (
    with darwin;
    with apple_sdk.frameworks;
    [
      libobjc
      cctools

@@ -45,7 +65,8 @@ in stdenv.mkDerivation {
      ApplicationServices
      Foundation
      AppKit
  ]);
    ]
  );

  env.NIX_CFLAGS_COMPILE = "-Wno-error";

@@ -67,6 +88,10 @@ in stdenv.mkDerivation {
    homepage = "https://gn.googlesource.com/gn";
    license = licenses.bsd3;
    platforms = platforms.unix;
    maintainers = with maintainers; [ stesie matthewbauer primeos ];
    maintainers = with maintainers; [
      stesie
      matthewbauer
      primeos
    ];
  };
}
+0 −8
Original line number Diff line number Diff line
{ callPackage, ... } @ args:

callPackage ./generic.nix args {
  rev = "24e2f7df92641de0351a96096fb2c490b2436bb8";
  revNum = "1924"; # git describe HEAD --match initial-commit | cut -d- -f3
  version = "2021-08-08";
  sha256 = "1lwkyhfhw0zd7daqz466n7x5cddf0danr799h4jg3s0yvd4galjl";
}
+1 −0
Original line number Diff line number Diff line
@@ -473,6 +473,7 @@ mapAliases {
  gnuradio3_9 = throw "gnuradio3_9 has been removed because it is not compatible with the latest volk and it had no dependent packages which justified it's distribution"; # Added 2024-07-28
  gnuradio3_9Minimal = throw "gnuradio3_9Minimal has been removed because it is not compatible with the latest volk and it had no dependent packages which justified it's distribution"; # Added 2024-07-28
  gnuradio3_9Packages = throw "gnuradio3_9Minimal has been removed because it is not compatible with the latest volk and it had no dependent packages which justified it's distribution"; # Added 2024-07-28
  gn1924 = throw "gn1924 has been removed because it was broken and no longer used by envoy."; # Added 2024-11-03
  gobby5 = throw "'gobby5' has been renamed to/replaced by 'gobby'"; # Converted to throw 2024-10-17
  gradle_6 = throw "Gradle 6 has been removed, as it is end-of-life (https://endoflife.date/gradle) and has many vulnerabilities that are not resolved until Gradle 7."; # Added 2024-10-30
  gradle_6-unwrapped = throw "Gradle 6 has been removed, as it is end-of-life (https://endoflife.date/gradle) and has many vulnerabilities that are not resolved until Gradle 7."; # Added 2024-10-30
+0 −1
Original line number Diff line number Diff line
@@ -17880,7 +17880,6 @@ with pkgs;
  nimbo = with python3Packages; callPackage ../applications/misc/nimbo { };
  gn = callPackage ../development/tools/build-managers/gn { };
  gn1924 = callPackage ../development/tools/build-managers/gn/rev1924.nix { };
  nixbang = callPackage ../development/tools/misc/nixbang {
    pythonPackages = python3Packages;
+1 −1

File changed.

Contains only whitespace changes.