blob: f6bbb284b0127ecadb53ee259bf3baf9488a5d33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{
description = "Flake wrapper for project";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
};
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
};
in {
packages.${system} = pkgs.callPackage ./lib/core/.nix/derivation.nix {
inherit pkgs;
};
};
}
|