3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/so/default.nix

28 lines
750 B
Nix
Raw Normal View History

{ lib, stdenv, rustPlatform, fetchFromGitHub, openssl, pkg-config, libiconv, Security }:
2020-08-28 13:56:32 +01:00
rustPlatform.buildRustPackage rec {
pname = "so";
2021-08-18 01:55:17 +01:00
version = "0.4.5";
2020-08-28 13:56:32 +01:00
src = fetchFromGitHub {
owner = "samtay";
repo = pname;
rev = "v${version}";
2021-08-18 01:55:17 +01:00
sha256 = "sha256-KiIffq8olpNpynmV4lwdY0yu2ch4MAwp5VspfLZtkf4=";
2020-08-28 13:56:32 +01:00
};
2021-08-18 01:55:17 +01:00
cargoSha256 = "sha256-VBuWKit50cSHYg7WzUP5ein3MEoZN/KFfm+YEEu544Q=";
2020-08-28 13:56:32 +01:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [
2020-08-28 13:56:32 +01:00
libiconv Security
];
meta = with lib; {
2020-08-28 13:56:32 +01:00
description = "A TUI interface to the StackExchange network";
homepage = "https://github.com/samtay/so";
license = licenses.mit;
maintainers = with maintainers; [ mredaelli ];
};
}