Use nix flake functionality for development

This commit is contained in:
Martin Puppe 2022-04-08 01:47:18 +02:00
parent 8c56307c55
commit dd5f51d9cc
10 changed files with 61 additions and 25 deletions

1
.envrc Normal file
View file

@ -0,0 +1 @@
use flake

1
.gitignore vendored
View file

@ -1 +1,2 @@
/.direnv/
/result /result

View file

@ -7,13 +7,13 @@ This repository contains files for building
First, you should update the necessary Nix files: First, you should update the necessary Nix files:
``` bash ``` bash
nix-shell --run 'bash generate.sh' nix develop --command bash generate.sh
``` ```
Afterwards, the distribution for financier can be built: Afterwards, the distribution for financier can be built:
``` bash ``` bash
nix-build dist.nix nix build
``` ```
There is also a module (module.nix) that you can use in your NixOS There is also a module (module.nix) that you can use in your NixOS

View file

@ -1,12 +1,11 @@
{ pkgs ? import <nixpkgs> { inherit system; }, system ? builtins.currentSystem { pkgs ? import <nixpkgs> { inherit system; }, system ? builtins.currentSystem
}: , financierVersion }:
let let
financier = (import ./default.nix { inherit pkgs system; }).package; financier = (import ./default.nix { inherit pkgs system; }).package;
meta = import ./meta.nix;
in pkgs.stdenv.mkDerivation { in pkgs.stdenv.mkDerivation {
inherit (meta) version; version = financierVersion;
pname = "financier-dist"; pname = "financier-dist";
src = "${financier}/lib/node_modules/financier"; src = "${financier}/lib/node_modules/financier";
buildInputs = [ financier.nodejs ]; buildInputs = [ financier.nodejs ];

17
flake.lock generated
View file

@ -1,5 +1,21 @@
{ {
"nodes": { "nodes": {
"financier": {
"flake": false,
"locked": {
"lastModified": 1643285999,
"narHash": "sha256-t0fdmgXtL5oh1sORK/9Uv8lDFXW2GCkQg+LGWyo8mXw=",
"owner": "mpuppe",
"repo": "financier",
"rev": "feb17f4bfba2121043be68d6ab74573c6be2a06d",
"type": "gitlab"
},
"original": {
"owner": "mpuppe",
"repo": "financier",
"type": "gitlab"
}
},
"flake-utils": { "flake-utils": {
"locked": { "locked": {
"lastModified": 1631561581, "lastModified": 1631561581,
@ -31,6 +47,7 @@
}, },
"root": { "root": {
"inputs": { "inputs": {
"financier": "financier",
"flake-utils": "flake-utils", "flake-utils": "flake-utils",
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs"
} }

View file

@ -1,8 +1,22 @@
{ {
inputs.flake-utils.url = "github:numtide/flake-utils"; inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils }: inputs.financier = {
let overlay = import ./overlay.nix; url = "gitlab:mpuppe/financier";
in flake-utils.lib.eachDefaultSystem (system: flake = false;
};
outputs = inputs@{ self, nixpkgs, ... }:
let
financierVersion = "1.7.3";
nodeVersion = "12";
overlay = final: prev: {
financier-dist = import ./dist.nix {
inherit financierVersion;
inherit (prev) pkgs system;
};
};
in inputs.flake-utils.lib.eachDefaultSystem (system:
let let
pkgs = import nixpkgs { pkgs = import nixpkgs {
inherit system; inherit system;
@ -11,8 +25,18 @@
in { in {
packages = { inherit (pkgs) financier-dist; }; packages = { inherit (pkgs) financier-dist; };
defaultPackage = self.packages.${system}.financier-dist; defaultPackage = self.packages.${system}.financier-dist;
devShell = pkgs.mkShell {
packages = with pkgs; [ nodePackages.node2nix ];
shellHook = ''
export FINANCIER_SRC="${inputs.financier}"
export FINANCIER_NODE_VERSION="${nodeVersion}"
'';
};
}) // { }) // {
inherit overlay; inherit overlay;
nixosModule = import ./module.nix; nixosModule = {
imports = [ ./module.nix ];
nixpkgs.overlays = [ self.overlay ];
};
}; };
} }

View file

@ -1,4 +1,12 @@
{ {
fetchFinancier = { fetchgit, meta ? import ./meta.nix }: fetchFinancier = { fetchgit }:
fetchgit { inherit (meta) url rev sha256; }; let
financierLockData = (builtins.fromJSON
(builtins.readFile ./flake.lock)).nodes.financier.locked;
inherit (financierLockData) narHash owner repo rev;
url = "https://gitlab.com/${owner}/${repo}.git";
in fetchgit {
inherit url rev;
sha256 = narHash;
};
} }

View file

@ -1,9 +0,0 @@
rec {
version = "1.7.3";
nodeVersion = "12";
# Arguments for fetchgit
url = "https://gitlab.com/mpuppe/financier.git";
rev = "83367cae265af4a036a05766c6f80ea22d1cc1ec";
sha256 = "0h7222j9fk4b3fkc7c6gbhl0xranpl5swapkwibb0aba0g6fykfg";
}

View file

@ -29,8 +29,6 @@ in {
}; };
config = mkIf cfg.enable { config = mkIf cfg.enable {
nixpkgs.overlays = [ (import ./overlay.nix) ];
networking.firewall.allowedTCPPorts = [ 80 443 ]; networking.firewall.allowedTCPPorts = [ 80 443 ];
services.nginx = mkIf (cfg.server == "nginx") { services.nginx = mkIf (cfg.server == "nginx") {

View file

@ -1,3 +0,0 @@
final: prev: {
financier-dist = import ./dist.nix { inherit (prev) pkgs system; };
}