diff options
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..1ee310e --- /dev/null +++ b/flake.nix @@ -0,0 +1,17 @@ +{ + description = "The Unofficial Homestuck Collection Client for NixOS"; + + inputs = { + nixpkgs.url = "github:nixos/nixpkgs/master"; + flake-utils.url = "github:numtide/flake-utils"; + }; + + outputs = { nixpkgs, flake-utils, ... }@inputs: + flake-utils.lib.eachSystem [ "x86_64-linux" ] (system: let + pkgs = nixpkgs.legacyPackages.${system}; + in rec { + packages.unofficial-homestuck-collection = pkgs.callPackage ./unofficial-homestuck-collection.nix {}; + legacyPackages = packages; + defaultPackage = packages.unofficial-homestuck-collection; + }); +} |