Skip to content

Commit

Permalink
tw-rs: init at 0.1.26
Browse files Browse the repository at this point in the history
fixes #25514
  • Loading branch information
Vanessa McHale authored and Mic92 committed May 6, 2017
1 parent 637e41f commit 37f59b3
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pkgs/misc/tw-rs/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 {};
Expand Down

1 comment on commit 37f59b3

@FRidh
Copy link
Member

@FRidh FRidh commented on 37f59b3 May 6, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

=== Verifying that nixpkgs evaluates...
error: undefined variable ‘vmchale’ at /home/travis/build/NixOS/nixpkgs/pkgs/misc/tw-rs/default.nix:21:39

Please sign in to comment.