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 12:56:32 +00:00
rustPlatform.buildRustPackage rec {
pname = "so";
2021-02-06 19:15:45 +00:00
version = "0.4.3";
2020-08-28 12:56:32 +00:00
src = fetchFromGitHub {
owner = "samtay";
repo = pname;
rev = "v${version}";
2021-02-06 19:15:45 +00:00
sha256 = "sha256-WAUPB4hhvroE1/8nQcgLVWgGyXcFh7qxdFg6UtQzM9A=";
2020-08-28 12:56:32 +00:00
};
cargoSha256 = "sha256-aaIzGvf+PvH8nz2BSJapi1P5gSVfXT92X62FqJ1Z2L0=";
2020-08-28 12:56:32 +00:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [
2020-08-28 12:56:32 +00:00
libiconv Security
];
meta = with lib; {
2020-08-28 12:56:32 +00:00
description = "A TUI interface to the StackExchange network";
homepage = "https://github.com/samtay/so";
license = licenses.mit;
maintainers = with maintainers; [ mredaelli ];
};
}