mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
code-minimap: init at 0.4.3
Message-Id: <20201225052234.17216-1-ben@bsima.me>
This commit is contained in:
parent
a60a1340b7
commit
3fb1e542e7
2 changed files with 27 additions and 0 deletions
25
pkgs/tools/misc/code-minimap/default.nix
Normal file
25
pkgs/tools/misc/code-minimap/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ stdenv
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "code-minimap";
|
||||
version = "0.4.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "wfxr";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "03azqy4i15kfpd0gzjaw2di9xva4xdf95yb65b93z3y9y5wy4krc";
|
||||
};
|
||||
|
||||
cargoSha256 = "1rxrdavj07i7qa5rf1i3aj7zdcp7c6lrg8yiy75r6lm4g98izzww";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A high performance code minimap render";
|
||||
homepage = "https://github.com/wfxr/code-minimap";
|
||||
license = with licenses; [ asl20 /* or */ mit ];
|
||||
maintainers = with maintainers; [ bsima ];
|
||||
};
|
||||
}
|
|
@ -1859,6 +1859,8 @@ in
|
|||
|
||||
cpulimit = callPackage ../tools/misc/cpulimit { };
|
||||
|
||||
code-minimap = callPackage ../tools/misc/code-minimap { };
|
||||
|
||||
codesearch = callPackage ../tools/text/codesearch { };
|
||||
|
||||
codec2 = callPackage ../development/libraries/codec2 { };
|
||||
|
|
Loading…
Reference in a new issue