1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

tw-rs: init at 0.1.26

fixes #25514
This commit is contained in:
Vanessa McHale 2017-04-23 00:22:27 -05:00 committed by Jörg Thalheim
parent 637e41fa6f
commit 37f59b3586
No known key found for this signature in database
GPG key ID: CA4106B8D7CC79FA
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ stdenv, fetchFromGitHub, rustPlatform, perl, zlib, openssl }:
rustPlatform.buildRustPackage rec {
name = "tw-rs-${version}";
version = "0.1.26";
src = fetchFromGitHub {
owner = "vmchale";
repo = "tw-rs";
rev = "${version}";
sha256 = "1s1gk2wcs3792gdzrngksczz3gma5kv02ni2jqrhib8l6z8mg9ia";
};
buildInputs = [ perl zlib openssl ];
depsSha256 = "1lg1jh6f9w28i94vaj62r859g6raalxmxabvw7av6sqr0hr56p05";
meta = with stdenv.lib; {
description = "Twitter command-line interface written in rust";
homepage = https://github.com/vmchale/tw-rs;
license = licenses.bsd3;
maintainers = with maintainers; [ vmchale ];
platforms = platforms.all;
};
}

View file

@ -18685,6 +18685,8 @@ with pkgs;
fpm2 = callPackage ../tools/security/fpm2 { };
tw-rs = callPackage ../misc/tw-rs { };
simplenote = callPackage ../applications/misc/simplenote { };
hy = callPackage ../development/interpreters/hy {};