flakes/android/flake.nix

28 lines
605 B
Nix
Raw Normal View History

2023-09-03 12:20:35 +02:00
{
description = "Spotify flake";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils}:
flake-utils.lib.eachDefaultSystem
(system:
let
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
};
in {
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
android-tools
2024-11-10 20:22:03 +01:00
apktool
gvfs
heimdall
usbutils
2023-09-03 12:20:35 +02:00
];
};
}
);
}