diff --git a/pkgs/default.nix b/pkgs/default.nix index 411c3836..c9c59097 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -20,7 +20,6 @@ in lib.makeScope pkgs.newScope (self: { fastn = callPackage ./fastn { }; flatsync = callPackage ./flatsync { }; freerct = callPackage ./freerct.nix { }; - distant = callPackage ./distant.nix { }; gnome-search-provider-recoll = callPackage ./gnome-search-provider-recoll.nix { }; #graphite-design-tool = callPackage ./graphite-design-tool { }; diff --git a/pkgs/distant.nix b/pkgs/distant.nix deleted file mode 100644 index a67164e8..00000000 --- a/pkgs/distant.nix +++ /dev/null @@ -1,30 +0,0 @@ -{ stdenv, lib, rustPlatform, fetchFromGitHub, pkg-config, openssl }: - -rustPlatform.buildRustPackage rec { - version = "0.20.0"; - pname = "distant"; - - src = fetchFromGitHub { - owner = "chipsenkbeil"; - repo = "distant"; - rev = "v${version}"; - hash = "sha256-DcnleJUAeYg3GSLZljC3gO9ihiFz04dzT/ddMnypr48="; - }; - cargoHash = "sha256-7MNNdm4b9u5YNX04nBtKcrw+phUlpzIXo0tJVfcgb40="; - - # Too many tests failing for now so we'll have to disable them. Much of the - # failed tests require a home directory and network access. - doCheck = false; - - # We'll just tell to use the system's openssl to build openssl-sys. - env.OPENSSL_NO_VENDOR = 1; - nativeBuildInputs = [ pkg-config ]; - buildInputs = [ openssl ]; - - meta = with lib; { - description = "Remotely edit files and run programs"; - homepage = "https://github.com/chipsenkbeil/distant"; - license = lib.licenses.mit; - maintainers = with maintainers; [ foo-dogsquared ]; - }; -}