blob: 85895d66188bc4f13fac874293d2b742d56d9bf4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{ pkgs ? import <nixpkgs> {}
, stdenv ? pkgs.llvmPackages_19.stdenv
, forstio ? (import ((builtins.fetchGit {
url = "git@git.keldu.de:forstio/forstio";
ref = "dev";
}).outPath + "/default.nix"){
inherit stdenv;
}).forstio
}:
let
in {
kel_rar = pkgs.callPackage ./run_and_record/.nix/derivation.nix {
inherit stdenv forstio;
};
}
|