mirror of
https://git.madhouse-project.org/algernon/iocaine.git
synced 2025-02-24 10:28:48 +01:00
While there, make the container use the statically linked package. Signed-off-by: Gergely Nagy <me@gergo.csillger.hu>
8 lines
249 B
Nix
8 lines
249 B
Nix
# SPDX-FileCopyrightText: 2025 Gergely Nagy
|
|
# SPDX-FileContributor: Gergely Nagy
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
_: _final: prev: {
|
|
iocaine = prev.callPackage ./iocaine.nix { };
|
|
iocaine-static = prev.pkgsStatic.callPackage ./iocaine.nix { };
|
|
}
|