about summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-01-03 22:34:20 +0100
committerGitHub <noreply@github.com>2024-01-03 22:34:20 +0100
commit020146194a59f1ec31eece8f7c0ff3643a4af80c (patch)
tree1f3c9b76f0b54c5fa411420f220fd07d55014ca1 /pkgs/applications/graphics
parentc10ee5009fc1b54dd20a24b450142c1e5e9e026b (diff)
parentfd4bd3729118858b179f6ba20f7df2a5b4d9e61d (diff)
Merge pull request #278390 from donovanglover/lutgen
lutgen: add shell completions
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/lutgen/default.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/pkgs/applications/graphics/lutgen/default.nix b/pkgs/applications/graphics/lutgen/default.nix
deleted file mode 100644
index be93d964337a9..0000000000000
--- a/pkgs/applications/graphics/lutgen/default.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{ lib
-, fetchFromGitHub
-, rustPlatform
-}:
-
-rustPlatform.buildRustPackage rec {
-  pname = "lutgen";
-  version = "0.9.0";
-
-  src = fetchFromGitHub {
-    owner = "ozwaldorf";
-    repo = "lutgen-rs";
-    rev = "v${version}";
-    hash = "sha256-tKSPk0V11pnKFV4E08H4CUnjw9nAonTRI6W3mGipd9I=";
-  };
-
-  cargoHash = "sha256-DiorrgTH9lIdmaZL7451uCXj9X7M6eHf4MQc85MpU7s=";
-
-  meta = with lib; {
-    description = "A blazingly fast interpolated LUT generator and applicator for arbitrary and popular color palettes";
-    homepage = "https://github.com/ozwaldorf/lutgen-rs";
-    maintainers = with maintainers; [ zzzsy ];
-    mainProgram = "lutgen";
-    license = licenses.mit;
-  };
-}