Skip to content

Commit 18345fb

Browse files
committed
Remove manual blueprint-compiler derivation, remove naersk dep
1 parent c67d5de commit 18345fb

File tree

4 files changed

+9
-96
lines changed

4 files changed

+9
-96
lines changed

flake.lock

Lines changed: 7 additions & 40 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,15 @@
22
description = "A gemini browser";
33
inputs = {
44
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
5-
naersk.url = "github:nix-community/naersk";
65
flake-utils.url = "github:numtide/flake-utils";
76
};
8-
outputs = { self, nixpkgs, naersk, flake-utils }:
7+
outputs = { self, nixpkgs, flake-utils }:
98
flake-utils.lib.eachSystem
109
(with flake-utils.lib.system; [ x86_64-linux aarch64-linux ])
1110
(system:
1211
let pkgs = nixpkgs.legacyPackages.${system}; in
1312
rec {
14-
packages.blueprint-compiler = pkgs.callPackage ./nix/blueprint-compiler.nix { };
15-
packages.geopard = pkgs.callPackage ./nix/geopard.nix {
16-
naersk-lib = naersk.lib.${system};
17-
blueprint-compiler = packages.blueprint-compiler;
18-
};
13+
packages.geopard = pkgs.callPackage ./nix/geopard.nix { };
1914
checks.default = pkgs.stdenv.mkDerivation {
2015
name = "geopard-checks";
2116
src = ./.;

nix/blueprint-compiler.nix

Lines changed: 0 additions & 48 deletions
This file was deleted.

nix/geopard.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
, blueprint-compiler
2020
, gobject-introspection
2121
, appstream-glib
22-
, naersk-lib
2322
, clippy
2423
}:
2524

0 commit comments

Comments
 (0)