summaryrefslogtreecommitdiff
path: root/derivations/yek/flake.nix
blob: 9dc04971916db2fc2b392b8171533f2baf886d36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  description = "yek flake";

  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
  };

  outputs = {
    self,
    nixpkgs,
  }: let
    system = "x86_64-linux";
    pkgs = nixpkgs.legacyPackages.${system};
  in {
    packages.${system}.default = pkgs.callPackage ./package.nix {
      inherit (pkgs) nixpkgs lib;
    };
  };
}