Compare commits
17 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8f82a34cc2 | ||
|
|
5de63963a4 | ||
|
|
788e69ebd6 | ||
|
|
7568457984 | ||
|
|
d5884cd899 | ||
|
|
bff6be4560 | ||
|
|
8a7b05f48e | ||
|
|
0bd9f78346 | ||
|
|
5dcb3d6d8b | ||
|
|
568ba0fb7c | ||
|
|
9fee5f1b3c | ||
|
|
b361fbb71c | ||
|
|
2f45f4e5d8 | ||
|
|
2ab5a07b00 | ||
|
|
90a6e26b51 | ||
|
|
c716178b00 | ||
|
|
62ca1bfab9 |
@@ -10,17 +10,16 @@
|
||||
flake-utils.lib.eachDefaultSystem (system:
|
||||
let
|
||||
pkgs = import nixpkgs { inherit system; };
|
||||
python = pkgs.python313;
|
||||
python = pkgs.python313; # or python312 if you prefer
|
||||
pythonPackages = python.pkgs;
|
||||
locutus = pythonPackages.buildPythonApplication {
|
||||
pname = "locutus";
|
||||
version = "0.1.0";
|
||||
src = ./.;
|
||||
format = "pyproject";
|
||||
|
||||
nativeBuildInputs = with pkgs; [ makeWrapper python.pkgs.setuptools ];
|
||||
propagatedBuildInputs = with pythonPackages; [];
|
||||
|
||||
nativeBuildInputs = with pkgs; [ makeWrapper python.pkgs.setuptools ];
|
||||
propagatedBuildInputs = with pythonPackages; [
|
||||
];
|
||||
# Install the CLI entrypoint
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/locutus --prefix PATH : ${pkgs.borgbackup}/bin
|
||||
|
||||
Reference in New Issue
Block a user