mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
14 lines
354 B
Nix
14 lines
354 B
Nix
{ lib, stdenv, fetchurl, python36, pythonPackages, installShellFiles }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "akiflags";
|
|
buildInputs = [
|
|
(python36.withPackages (pythonPackages: with pythonPackages; [ ]))
|
|
];
|
|
unpackPhase = "true";
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp ${./flags.py} $out/bin/akiflags
|
|
chmod +x $out/bin/akiflags
|
|
'';
|
|
}
|