Fix Blue Pits names

This commit is contained in:
stefan burke 2024-12-05 17:25:16 +00:00
parent f10f3b90b6
commit 25b3ebdc00
2 changed files with 4 additions and 4 deletions

View file

@ -3,7 +3,7 @@
let
src = ./.;
env = pkgs.bundlerEnv {
name = "bluepitshousingaction-co-uk";
name = "freeholdcottage-com";
inherit (pkgs) ruby;
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
@ -11,7 +11,7 @@ let
};
in
pkgs.stdenv.mkDerivation {
name = "bluepitshousingaction-co-uk";
name = "freeholdcottage-com";
src = builtins.filterSource
(path: type: !(builtins.elem (baseNameOf path) [

View file

@ -1,6 +1,6 @@
with (import <nixpkgs> {}); let
env = bundlerEnv {
name = "BluePitsHousingAction";
name = "FreeholdCottage";
inherit ruby;
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
@ -8,7 +8,7 @@ with (import <nixpkgs> {}); let
};
in
stdenv.mkDerivation {
name = "bluepitshousingaction-co-uk";
name = "freeholdcottage-com";
buildInputs = [
env
ruby_3_3