aboutsummaryrefslogtreecommitdiffstats
path: root/pkgs/by-name
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--pkgs/by-name/at/atuin-server-only/package.nix22
1 files changed, 0 insertions, 22 deletions
diff --git a/pkgs/by-name/at/atuin-server-only/package.nix b/pkgs/by-name/at/atuin-server-only/package.nix
deleted file mode 100644
index ddad2ec..0000000
--- a/pkgs/by-name/at/atuin-server-only/package.nix
+++ /dev/null
@@ -1,22 +0,0 @@
-{atuin}:
-atuin.overrideAttrs (final: prev: {
- pname = prev.pname + "-server-only";
- inherit (prev) patches;
-
- # atuin's default features include 'check-updates', which do not make sense
- # for distribution builds. List all other default features.
- buildNoDefaultFeatures = true;
- buildFeatures = [
- # All of this is client code
- # "client"
- # "sync"
- # "check-update"
- # "clipboard"
- # "daemon" # Background daemon for the client
-
- "server"
- ];
-
- # The checks don't compile without the `server` feature
- doCheck = true;
-})