summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/nix
diff options
context:
space:
mode:
authorIogaMaster <iogamastercode@gmail.com>2024-01-12 16:43:46 -0700
committerIogaMaster <iogamastercode@gmail.com>2024-01-29 10:48:55 -0700
commita44c757bb740c5faaf0e328afd1c6bc1c666b024 (patch)
tree63985d1357beedfcc6af277f7e5cd5f9b4efdd6d /pkgs/tools/nix
parent644fcfd126b711abd485633834385613ac4b2d30 (diff)
manix: 0.7.1 -> 0.8.0
https://github.com/nix-community/manix Update pkgs/by-name/ma/manix/package.nix Co-authored-by: bryango <bryango@users.noreply.github.com> Update pkgs/by-name/ma/manix/package.nix Co-authored-by: bryango <bryango@users.noreply.github.com>
Diffstat (limited to 'pkgs/tools/nix')
-rw-r--r--pkgs/tools/nix/manix/default.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/pkgs/tools/nix/manix/default.nix b/pkgs/tools/nix/manix/default.nix
deleted file mode 100644
index 082f99f4de74..000000000000
--- a/pkgs/tools/nix/manix/default.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- lib,
- stdenv,
- fetchFromGitHub,
- rustPlatform,
- Security,
-}:
-rustPlatform.buildRustPackage rec {
- pname = "manix";
- version = "0.7.1";
-
- src = fetchFromGitHub {
- repo = pname;
- owner = "lecoqjacob";
- rev = "${version}";
- hash = "sha256-kTQbeOIGG1HmbsXKfXw5yCZ49kGufbGiCkkIRMTwcsg=";
- };
-
- buildInputs = lib.optionals stdenv.isDarwin [Security];
- cargoSha256 = "sha256-7SHUi1qH9Dr4Oi7A6gRmZqhAIr8RzLNU1l1x4WGtQYI=";
-
- meta = with lib; {
- license = [licenses.mpl20];
- platforms = platforms.unix;
- homepage = "https://github.com/lecoqjacob/manix";
- description = "A Fast Documentation Searcher for Nix";
- maintainers = [maintainers.lecoqjacob];
- };
-}