summaryrefslogtreecommitdiff
path: root/derivations/yek/flake.nix
blob: 904d54f56445a6d4b1b340a5a9f50c6525a4ebe5 (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) lib;
    };
  };
}