Unverified Commit c712af58 authored by Philip Taron's avatar Philip Taron Committed by GitHub
Browse files

various: move to pkgs/by-name (#482587)

parents e6fcdcbe cd91697c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -504,7 +504,7 @@ pkgs/development/interpreters/elixir/ @NixOS/beam
pkgs/development/interpreters/lfe/      @NixOS/beam

# Authelia
pkgs/servers/authelia/ @06kellyjac @dit7ya @nicomem
pkgs/by-name/au/authelia/ @06kellyjac @dit7ya @nicomem

# OctoDNS
pkgs/by-name/oc/octodns/ @anthonyroussel
+3 −4
Original line number Diff line number Diff line
@@ -16,8 +16,7 @@
  optipng,
  imagemagick,
  withCrashReporter ? !stdenv.hostPlatform.isDarwin,
  qtbase ? null,
  wrapQtAppsHook ? null,
  qt5,
  curl ? null,
  gdb ? null,
}:
@@ -49,7 +48,7 @@ stdenv.mkDerivation rec {
    imagemagick
    optipng
  ]
  ++ optionals withCrashReporter [ wrapQtAppsHook ];
  ++ optionals withCrashReporter [ qt5.wrapQtAppsHook ];

  buildInputs = [
    zlib
@@ -62,7 +61,7 @@ stdenv.mkDerivation rec {
    libepoxy
  ]
  ++ optionals withCrashReporter [
    qtbase
    qt5.qtbase
    curl
  ]
  ++ optionals stdenv.hostPlatform.isLinux [ gdb ];
+3 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@
  pnpmConfigHook,
  pnpm,
  fetchFromGitHub,
  buildGoModule,
  buildGo124Module,
  installShellFiles,
  callPackage,
  nixosTests,
@@ -22,6 +22,8 @@
}:

let
  buildGoModule = buildGo124Module;

  inherit (import ./sources.nix { inherit fetchFromGitHub; })
    pname
    version
Loading