Skip to content

Commit

Permalink
cicd: fix flake.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
alienc0der committed Nov 20, 2024
1 parent cb1e969 commit d836cd9
Showing 1 changed file with 0 additions and 50 deletions.
50 changes: 0 additions & 50 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,56 +18,6 @@
};
};

outputs =
{
self,
nixpkgs,
nix-bundle-exe,
gomod2nix,
flake-utils,
poetry2nix,
}:
let
rev = self.shortRev or "dirty";
mkApp = drv: {
type = "app";
program = "${drv}/bin/${drv.meta.mainProgram}";
};
in
(flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs {
inherit system;
overlays = self.overlays.default;
config = { };
};
in
rec {
packages = pkgs.cronos-matrix // {
inherit (pkgs) rocksdb testground-image;
};
apps = {
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/release-24.05";
flake-utils.url = "github:numtide/flake-utils";
nix-bundle-exe = {
url = "github:3noch/nix-bundle-exe";
flake = false;
};
gomod2nix = {
url = "github:obreitwi/gomod2nix/fix/go_mod_vendor";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-utils.follows = "flake-utils";
};
poetry2nix = {
url = "github:nix-community/poetry2nix";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-utils.follows = "flake-utils";
};
};

outputs =
{
self,
Expand Down

0 comments on commit d836cd9

Please sign in to comment.