Skip to content

Commit

Permalink
bloop 1.6.0 from nixpkgs/master
Browse files Browse the repository at this point in the history
  • Loading branch information
ornicar committed Jul 14, 2024
1 parent c8d892b commit 02c58b0
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 65 deletions.
1 change: 1 addition & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
nixpkgs-master.url = "github:NixOS/nixpkgs/master";

nixpkgs-mongodb-pin.url =
"github:NixOS/nixpkgs/e913ae340076bbb73d9f4d3d065c2bca7caafb16";
Expand Down
2 changes: 1 addition & 1 deletion home/modules/coding.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ pkgs, ... }: {

home.packages = with pkgs; [ thibloop ];
home.packages = with pkgs; [ bloop ];

home.sessionVariables = {
# for lila/ui/build to find the sass executable
Expand Down
2 changes: 1 addition & 1 deletion home/services/bloop.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Service = {
Environment =
[ "PATH=${lib.makeBinPath [ config.programs.java.package ]}" ];
ExecStart = "${pkgs.thibloop}/bin/thibloop server";
ExecStart = "${pkgs.bloop}/bin/bloop server";
ExecStop = "${pkgs.psmisc}/bin/fuser -k 8212/tcp -TERM";
};
Install = { WantedBy = [ "default.target" ]; };
Expand Down
2 changes: 2 additions & 0 deletions overlays/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
config.allowUnfree = true;
}).mongodb-6_0;

bloop = (import inputs.nixpkgs-master { system = final.system; }).bloop;

# bloop = prev.bloop.overrideAttrs (previousAttrs: {
# version = "1.6.0-3";
# bloop-binary = prev.fetchurl {
Expand Down
2 changes: 1 addition & 1 deletion pkgs/default.nix
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pkgs: { thibloop = pkgs.callPackage ./thibloop.nix { }; }
pkgs: { }
62 changes: 0 additions & 62 deletions pkgs/thibloop.nix

This file was deleted.

0 comments on commit 02c58b0

Please sign in to comment.