Skip to content

Commit

Permalink
Merge branch 'develop' into mtv-auto-pos
Browse files Browse the repository at this point in the history
  • Loading branch information
lunalawl committed Dec 29, 2024
2 parents 143236a + cba335a commit 715f01d
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 1 deletion.
1 change: 0 additions & 1 deletion _ark/dx/song_updates/metadata_updates.dta
Original file line number Diff line number Diff line change
Expand Up @@ -890,7 +890,6 @@
(brickhouse (genre rbsoulfunk))
(broken3 (genre popdanceelectronic))
(cannedheat (genre rbsoulfunk))
(celebration (genre disco))
(cheapthrills (genre popdanceelectronic))
(cityofangels (genre hiphoprap))
(comeandgo (genre hiphoprap))
Expand Down
27 changes: 27 additions & 0 deletions scripts/flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 27 additions & 0 deletions scripts/flake.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
};

outputs =
{ self, nixpkgs }:
{
devShells.x86_64-linux.default =
let
pkgs = import nixpkgs { system = "x86_64-linux"; };
in
(pkgs.buildFHSEnv {
name = "rb3dx-build-env";
targetPkgs =
pkgs: with pkgs; [
gmp
icu
python3
ninja
fish
zlib
];
runScript = "fish";
}).env;
};
}

0 comments on commit 715f01d

Please sign in to comment.