worked on various things
This commit is contained in:
parent
f3cb35653e
commit
3c35b89250
18 changed files with 156 additions and 126 deletions
23
flake.nix
Normal file
23
flake.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
description = "Streamarr";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgsnixos-unstable";
|
||||
flake-utils.url = "github:numtide/flake-utils";
|
||||
bix = {
|
||||
url = "github:knarkzel/bix";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, flake-utils }:
|
||||
flake-utils.lib.eachDefaultSystem (system: let
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
in
|
||||
{
|
||||
packages = bix.buildBunPackage {
|
||||
src = ./.;
|
||||
packages = ./package.json;
|
||||
};
|
||||
});
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue