flake: a mixture of hotfixes and updates

This commit is contained in:
Muhammad Nauman Raza 2024-03-25 22:53:53 +00:00
parent 8d95397e9a
commit c7b445bac4
No known key found for this signature in database
GPG key ID: 31BC90D626D2DBBE

View file

@ -1,5 +1,5 @@
{ {
description = "Rust development environment for oxitoko using fenix"; description = "Rust development environment for rustboyadvance-ng";
inputs = { inputs = {
utils.url = "github:numtide/flake-utils"; utils.url = "github:numtide/flake-utils";
@ -16,13 +16,11 @@
( (
system: let system: let
pkgs = import nixpkgs-unstable { inherit system; }; pkgs = import nixpkgs-unstable { inherit system; };
toolchain = pkgs.fenix.complete;
dependencies = with pkgs; [ SDL2 SDL2_image ]; dependencies = with pkgs; [ SDL2 SDL2_image ];
in rec in rec
{ {
# Executed by `nix build` # Executed by `nix build`
packages.default = packages.default = pkgs.rustPlatform.buildRustPackage {
(pkgs.makeRustPlatform.buildRustPackage {
pname = "rustboyadvance-ng"; pname = "rustboyadvance-ng";
name = "rustboyadvance-ng"; name = "rustboyadvance-ng";
src = ./.; src = ./.;
@ -35,10 +33,8 @@
}; };
buildInputs = dependencies; buildInputs = dependencies;
}; };
# Executed by `nix run` # Executed by `nix run`
apps.default = utils.lib.mkApp {drv = packages.default;}; apps.default = utils.lib.mkApp {drv = packages.default;};
# Used by `nix develop` # Used by `nix develop`
devShells.default = pkgs.mkShell rec { buildInputs = dependencies; }; devShells.default = pkgs.mkShell rec { buildInputs = dependencies; };
} }