Add android-tools flake

This commit is contained in:
Tibo De Peuter 2023-09-03 12:20:35 +02:00
parent 77b624c49b
commit 131796b420

24
android/flake.nix Normal file
View file

@ -0,0 +1,24 @@
{
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; [
heimdall
android-tools
];
};
}
);
}