You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
427 B
Nix
23 lines
427 B
Nix
with (import <nixpkgs> {});
|
|
|
|
stdenv.mkDerivation {
|
|
name = "waydroid_script";
|
|
|
|
buildInputs = [
|
|
(python3.withPackages(ps: with ps; [ tqdm requests inquirerpy ]))
|
|
];
|
|
|
|
src = ./.;
|
|
|
|
postPatch = ''
|
|
patchShebangs main.py
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/libexec
|
|
cp -r . $out/libexec/waydroid_script
|
|
mkdir -p $out/bin
|
|
ln -s $out/libexec/waydroid_script/main.py $out/bin/waydroid_script
|
|
'';
|
|
}
|