kompress eshop rename from gitara

This commit is contained in:
Priec
2026-06-17 13:57:37 +02:00
parent 95f195a204
commit e4f63b3de9
25 changed files with 78 additions and 76 deletions

View File

@@ -1,5 +1,5 @@
{
description = "Development Nix flake for the gitara_web (kompress_eshop) loco-rs app";
description = "Development Nix flake for the kompress (kompress_eshop) loco-rs app";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
@@ -41,8 +41,8 @@
cargo = pkgs.rust-bin.stable.latest.minimal;
rustc = pkgs.rust-bin.stable.latest.minimal;
};
gitara-web = rustPlatform.buildRustPackage {
pname = "gitara_web";
kompress = rustPlatform.buildRustPackage {
pname = "kompress_eshop";
inherit version;
src = ./.;
cargoLock.lockFile = ./Cargo.lock;
@@ -57,7 +57,7 @@
];
# Build only the application binary.
cargoBuildFlags = [ "--bin" "gitara_web-cli" ];
cargoBuildFlags = [ "--bin" "kompress-eshop-cli" ];
# Tests need a database/runtime environment; skip during the build.
doCheck = false;
@@ -66,8 +66,8 @@
};
in
{
gitara-web = gitara-web;
default = gitara-web;
kompress = kompress;
default = kompress;
}
);