diff options
author | Emile <git@emile.space> | 2024-08-16 23:33:53 +0200 |
---|---|---|
committer | Emile <git@emile.space> | 2024-08-16 23:33:53 +0200 |
commit | cea6896788a42c0ea40f99deb4b5987d6741e360 (patch) | |
tree | 7b65658ce082cab4f552b0a42fa171745f003bd2 /web/vokobe/flaaaaake.nix | |
parent | dcfc18774fe2d4207c2996b2d16ea67499b70228 (diff) |
big dump, forgot to commit...
Diffstat (limited to 'web/vokobe/flaaaaake.nix')
-rw-r--r-- | web/vokobe/flaaaaake.nix | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/web/vokobe/flaaaaake.nix b/web/vokobe/flaaaaake.nix deleted file mode 100644 index 7cf2f03..0000000 --- a/web/vokobe/flaaaaake.nix +++ /dev/null @@ -1,44 +0,0 @@ -{ - inputs = { - flake-utils.url = "github:numtide/flake-utils"; - naersk.url = "github:nix-community/naersk"; - nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; - }; - - outputs = { self, flake-utils, naersk, nixpkgs }: - let - pkgs = (import nixpkgs) { - system = "x86_64-linux"; - }; - - naersk' = pkgs.callPackage naersk {}; - - in rec { - packages."x86_64-linux".vokobe = naersk'.buildPackage { - src = ./.; - - meta = with pkgs.lib; { - description = "A minimal static site generator tailored to my needs."; - homepage = "https://git.emile.space/hanemile/vokobe"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ - hanemile - ]; - }; - }; - - # For `nix build` & `nix run`: - defaultPackage = packages."x86_64-linux".vokobe; - - # For `nix develop` (optional, can be skipped): - devShell = pkgs.mkShell { - nativeBuildInputs = with pkgs; [ rustc cargo ]; - }; - - # hydraJobs."<attr>"."<system>" = derivation; - hydraJobs = { - build."x86_64-linux" = packages."x86_64-linux".vokobe; - }; - }; -} \ No newline at end of file |