This repository has been archived on 2024-10-26. You can view files and clone it, but cannot push or open issues or pull requests.
staxman-old/default.nix
2023-11-27 13:33:52 +01:00

19 lines
No EOL
205 B
Nix

{ naersk
, version
, pkgs
, ...
}:
naersk.buildPackage {
name = "staxman";
inherit version;
src = ./.;
nativeBuildInputs = with pkgs; [
clang
mold
];
buildInputs = with pkgs; [ ];
}