15 lines
359 B
Nix
15 lines
359 B
Nix
|
{
|
||
|
description = "License Managment tool";
|
||
|
|
||
|
inputs = {
|
||
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||
|
};
|
||
|
|
||
|
outputs = inputs@{ self, nixpkgs, ... }: {
|
||
|
packages = nixpkgs.lib.attrsets.genAttrs nixpkgs.lib.systems.flakeExposed (system: import ./nix {
|
||
|
inherit system inputs;
|
||
|
pkgs = nixpkgs.legacyPackages.${system};
|
||
|
});
|
||
|
};
|
||
|
}
|