diff options
Diffstat (limited to 'pkgs/tools/misc/code-minimap/default.nix')
-rw-r--r-- | pkgs/tools/misc/code-minimap/default.nix | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/pkgs/tools/misc/code-minimap/default.nix b/pkgs/tools/misc/code-minimap/default.nix deleted file mode 100644 index db58ede25abf..000000000000 --- a/pkgs/tools/misc/code-minimap/default.nix +++ /dev/null @@ -1,30 +0,0 @@ -{ lib -, stdenv -, rustPlatform -, fetchFromGitHub -, libiconv -}: - -rustPlatform.buildRustPackage rec { - pname = "code-minimap"; - version = "0.6.7"; - - src = fetchFromGitHub { - owner = "wfxr"; - repo = pname; - rev = "v${version}"; - sha256 = "sha256-d9qcSSiRv1I7NYuLrra5ShIUXT2HVeHGD0WPb+dnQCc="; - }; - - cargoHash = "sha256-5/UgEzkJw9XDgtS1jKyWh5ijTp3L+UQLuE5CXcyIgTs="; - - buildInputs = lib.optional stdenv.isDarwin libiconv; - - meta = with lib; { - description = "High performance code minimap render"; - homepage = "https://github.com/wfxr/code-minimap"; - license = with licenses; [ asl20 /* or */ mit ]; - maintainers = with maintainers; [ bsima ]; - mainProgram = "code-minimap"; - }; -} |