commit bac4d92548cda81196e76c990454896ba129d830 parent fcab7f297059083c3577cd4e0df7fd7ad82af567 Author: Nikolay Korotkiy <sikmir@gmail.com> Date: Thu, 6 May 2021 19:40:52 +0300 Move ht to nixpkgs Diffstat:
M | pkgs/default.nix | | | 1 | - |
D | pkgs/misc/ht/default.nix | | | 25 | ------------------------- |
2 files changed, 0 insertions(+), 26 deletions(-)
diff --git a/pkgs/default.nix b/pkgs/default.nix @@ -230,7 +230,6 @@ lib.makeScope newScope ( gef = callPackage ./misc/gef { }; glauth = callPackage ./misc/glauth { }; how-to-use-pvs-studio-free = callPackage ./misc/pvs-studio/how-to-use-pvs-studio-free.nix { }; - ht = callPackage ./misc/ht { }; ish = callPackage ./misc/ish { }; lazyscraper = callPackage ./misc/lazyscraper { }; morse-talk = callPackage ./misc/morse-talk { }; diff --git a/pkgs/misc/ht/default.nix b/pkgs/misc/ht/default.nix @@ -1,25 +0,0 @@ -{ lib, rustPlatform, fetchFromGitHub }: - -rustPlatform.buildRustPackage rec { - pname = "ht"; - version = "0.6.0"; - - src = fetchFromGitHub { - owner = "ducaale"; - repo = pname; - rev = "v${version}"; - hash = "sha256-0HrSQmSQ1B2xMQaaSmY8tKyzn7e5yP1oyLXojD4PdSA="; - }; - - cargoHash = "sha256-t7ShFSPeeHPkI8D1zinzYXmRxHd3nC4KMTNKuNg3EcA="; - - doCheck = false; - - meta = with lib; { - description = "Yet another HTTPie clone"; - inherit (src.meta) homepage; - license = licenses.mit; - maintainers = [ maintainers.sikmir ]; - platforms = platforms.unix; - }; -}