18 lines
460 B
Nix
18 lines
460 B
Nix
|
{
|
||
|
description = "The loomio flake";
|
||
|
|
||
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
||
|
inputs.flake-utils.url = "github:numtide/flake-utils";
|
||
|
|
||
|
outputs = {nixpkgs, flake-utils, ...}:
|
||
|
flake-utils.lib.eachDefaultSystem (system:
|
||
|
let
|
||
|
pkgs = import nixpkgs { inherit system; };
|
||
|
in rec {
|
||
|
packages = rec {
|
||
|
loomio = pkgs.callPackage ./pkg/loomio/default.nix {};
|
||
|
inherit pkgs;
|
||
|
};
|
||
|
});
|
||
|
}
|