mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-04-16 12:19:10 +00:00
pkgs/distant: remove
Available from upstream nixpkgs unstable branch and it's only used outside of this project anyways.
This commit is contained in:
parent
6f659999d1
commit
3ae1781736
@ -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 { };
|
||||
|
@ -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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user