This commit is contained in:
AG 2025-10-20 15:47:44 +02:00
parent da85b3fe22
commit ec0442f7b3
2 changed files with 6 additions and 3 deletions

View File

@ -1,5 +1,8 @@
{ config, pkgs, lib, system ? builtins.currentSystem, ... }:
{ system ? builtins.currentSystem }:
let
pkgs = import <nixpkgs> { inherit system; };
in
{
apache-hop = pkgs.callPackage ./pkgs/apache-hop { };
}

View File

@ -1,4 +1,4 @@
{ pkgs ? import <nixpkgs> { }, ... }:
{ pkgs ? import <nixpkgs> { } }:
pkgs.stdenv.mkDerivation rec {
pname = "apache-hop";