about summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorDonovan Glover <donovan@dglover.co>2024-01-02 19:55:33 -0500
committerDonovan Glover <donovan@dglover.co>2024-01-02 19:55:33 -0500
commitc371bd90f024469294e7daaf96121dc504e2c40a (patch)
tree78b17b8ecaa69b64ab16b1d20f01a7481a97cd2f /pkgs/applications/graphics
parent640b51eee9e42c6bb23f0500d21e0c6ebce848d5 (diff)
lutgen: migrate to by-name
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;
-  };
-}