default.nix (1185B)
1 { 2 stdenv, 3 lib, 4 rustPlatform, 5 fetchFromSourcehut, 6 curl, 7 libiconv, 8 openssl, 9 pkg-config, 10 makeWrapper, 11 }: 12 13 rustPlatform.buildRustPackage { 14 pname = "repolocli"; 15 version = "0-unstable-2021-04-06"; 16 17 src = fetchFromSourcehut { 18 owner = "~matthiasbeyer"; 19 repo = "repolocli"; 20 rev = "32b24f4e03d0dc48db7f7d9927501b07b4821c33"; 21 hash = "sha256-hNT+DilBpzjoJBVgXTB9kU4Obh8cszXFLCTaNhiOZHM="; 22 }; 23 24 cargoPatches = [ ./cargo-lock.patch ]; 25 useFetchCargoVendor = true; 26 cargoHash = "sha256-XGjpZIMDaNTEoBe4siuy2jIQjsj6+hbss8QUzXCb1cQ="; 27 28 nativeBuildInputs = [ 29 pkg-config 30 makeWrapper 31 ]; 32 33 buildInputs = 34 lib.optionals stdenv.isLinux [ openssl ] 35 ++ lib.optionals stdenv.hostPlatform.isDarwin [ 36 curl 37 libiconv 38 ]; 39 40 postInstall = '' 41 install -Dm644 repolocli.toml -t $out/etc/xdg 42 43 wrapProgram $out/bin/repolocli \ 44 --prefix XDG_CONFIG_DIRS : $out/etc/xdg 45 ''; 46 47 meta = { 48 description = "Repology commandline interface (and API)"; 49 homepage = "https://git.sr.ht/~matthiasbeyer/repolocli"; 50 license = lib.licenses.gpl2Only; 51 maintainers = [ lib.maintainers.sikmir ]; 52 broken = stdenv.isLinux; 53 }; 54 }