19 lines
465 B
Nix
19 lines
465 B
Nix
{
|
|
description = "Nix flake for the activity logging script";
|
|
outputs =
|
|
{ self, nixpkgs, ... }@inputs:
|
|
{
|
|
packages.x86_64-linux =
|
|
let
|
|
inherit (self) outputs;
|
|
system = "x86_64-linux";
|
|
pkgs = import nixpkgs { inherit system; };
|
|
in
|
|
{
|
|
tuh-activity-logger = import ./pkgs/tuh-activity-logger/default.nix {
|
|
inherit (pkgs) python3Packages sqlite;
|
|
};
|
|
};
|
|
};
|
|
}
|