summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/misc/joshuto/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/misc/joshuto/default.nix')
-rw-r--r--pkgs/applications/misc/joshuto/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/applications/misc/joshuto/default.nix b/pkgs/applications/misc/joshuto/default.nix
new file mode 100644
index 000000000000..89e5aea943a5
--- /dev/null
+++ b/pkgs/applications/misc/joshuto/default.nix
@@ -0,0 +1,31 @@
+{ fetchFromGitHub, lib, rustPlatform, stdenv, SystemConfiguration }:
+
+rustPlatform.buildRustPackage rec {
+ pname = "joshuto";
+ version = "0.9.0";
+
+ src = fetchFromGitHub {
+ owner = "kamiyaa";
+ repo = pname;
+ rev = version;
+ sha256 = "08d6h7xwcgycw5bdzwwc6aaikcrw3yc7inkiydgml9q261kql7zl";
+ # upstream includes an outdated Cargo.lock that stops cargo from compiling
+ postFetch = ''
+ mkdir -p $out
+ tar xf $downloadedFile --strip=1 -C $out
+ substituteInPlace $out/Cargo.lock \
+ --replace 0.8.6 ${version}
+ '';
+ };
+
+ cargoSha256 = "1scrqm7fs8y7anfiigimj7y5rjxcc2qvrxiq8ai7k5cwfc4v1ghm";
+
+ buildInputs = lib.optional stdenv.isDarwin SystemConfiguration;
+
+ meta = with lib; {
+ description = "Ranger-like terminal file manager written in Rust";
+ homepage = "https://github.com/kamiyaa/joshuto";
+ license = licenses.lgpl3Only;
+ maintainers = with maintainers; [ figsoda ];
+ };
+}