1
0
Fork 0

bdfr-browser: init

This commit is contained in:
Daniel Kempkens 2023-05-18 00:28:32 +02:00
parent dcbbc92684
commit f02357c118
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM
3 changed files with 36 additions and 3 deletions

View file

@ -25,6 +25,7 @@ jobs:
- run: nix build '.#neovim-nightly'
- run: nix build '.#q'
- run: nix build '.#rimgo'
- run: nix build '.#bdfr-browser'
- run: nix build '.#website-docs-nifoc-pw'
build-arm64-linux:

View file

@ -1,5 +1,28 @@
{
"nodes": {
"bdfr-browser-flake": {
"inputs": {
"flake-parts": [
"flake-parts"
],
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1684361635,
"narHash": "sha256-BlGsSDE0P2mcp4OThzCzpgM6FN3wON6cdYBfI7YdNtk=",
"owner": "nifoc",
"repo": "bdfr-browser",
"rev": "e03c759bb78571a4d8b0bf3da763660a1ece3038",
"type": "github"
},
"original": {
"owner": "nifoc",
"repo": "bdfr-browser",
"type": "github"
}
},
"flake-parts": {
"inputs": {
"nixpkgs-lib": "nixpkgs-lib"
@ -42,11 +65,11 @@
},
"locked": {
"dir": "contrib",
"lastModified": 1684251707,
"narHash": "sha256-ldXse+DvrDJnlnCJK2e8+RM5ftvk71u2E1aMeY3o/Fc=",
"lastModified": 1684328787,
"narHash": "sha256-JMoFnoATPhHKgJT4p/z5lcX5x0+f35+MRkCLz8tWhz0=",
"owner": "neovim",
"repo": "neovim",
"rev": "6b19170d44ca56cf65542ee184d2bc89c6d622a9",
"rev": "c9f47fca8b896ecb304294cce675fedac9ab926c",
"type": "github"
},
"original": {
@ -92,6 +115,7 @@
},
"root": {
"inputs": {
"bdfr-browser-flake": "bdfr-browser-flake",
"flake-parts": "flake-parts",
"neovim-flake": "neovim-flake",
"nixpkgs": "nixpkgs"

View file

@ -9,6 +9,12 @@
url = "github:neovim/neovim?dir=contrib";
inputs.nixpkgs.follows = "nixpkgs";
};
bdfr-browser-flake = {
url = "github:nifoc/bdfr-browser";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-parts.follows = "flake-parts";
};
};
outputs = inputs@{ flake-parts, ... }:
@ -44,6 +50,8 @@
nitter-unstable = import ./packages/nitter-unstable.nix { inherit pkgs lib; };
q = import ./packages/q.nix { inherit pkgs lib; };
rimgo = import ./packages/rimgo.nix { inherit pkgs lib; };
bdfr-browser = inputs'.bdfr-browser-flake.packages.default;
website-docs-nifoc-pw = import ./packages/website-docs-nifoc-pw.nix { inherit pkgs; };
} // darwinPackages;