summaryrefslogtreecommitdiff
path: root/flake.nix
blob: e8486e059631f76fd10edc558f35cad5709358bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  description = "An editor for datagubbar";

  inputs.nixpkgs.url = "nixpkgs/nixos-22.05";
  inputs.flake-utils.url = "github:numtide/flake-utils";

  outputs = { self, nixpkgs, flake-utils }:
    flake-utils.lib.eachDefaultSystem (system:
      let
        pkgs = nixpkgs.legacyPackages."${system}";
      in
      {
        packages.default = pkgs.callPackage ./dged.nix { };
      }
    );
}