python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / ripdrag / default.nix
blobd9eca0f1b6498af23cd13be14133cf50a145f496
1 { lib, rustPlatform, fetchCrate, pkg-config, gtk4 }:
3 rustPlatform.buildRustPackage rec {
4   pname = "ripdrag";
5   version = "0.2.1";
7   src = fetchCrate {
8     inherit pname version;
9     sha256 = "sha256-/TF9dWZQVEVM3lHp4ubxYkDW+ZDL9puT6mUT6Q3hUsw=";
10   };
12   cargoSha256 = "sha256-mIsT93XRU0mR5s5w3Sng2DTW2LyO9HT1w/1932vptIE=";
14   nativeBuildInputs = [ pkg-config ];
16   buildInputs = [ gtk4 ];
18   meta = with lib; {
19     description = "An application that lets you drag and drop files from and to the terminal";
20     homepage = "https://github.com/nik012003/ripdrag";
21     license = licenses.gpl3Only;
22     maintainers = with maintainers; [ figsoda ];
23   };