sit: 0.3.0 -> 0.3.2

This commit is contained in:
Yurii Rashkovskii 2018-05-06 09:35:01 -07:00
parent 17950abc78
commit 9f1017c679
No known key found for this signature in database
GPG Key ID: 1D60D7CFD80845FF

View File

@ -1,23 +1,25 @@
{ stdenv, fetchFromGitHub, rustPlatform }:
{ stdenv, fetchFromGitHub, rustPlatform, cmake, libzip }:
rustPlatform.buildRustPackage rec {
name = "sit-${version}";
version = "0.3.0";
version = "0.3.2";
src = fetchFromGitHub {
owner = "sit-it";
repo = "sit";
rev = "v${version}";
sha256 = "1si4fg02wxi35hpkr58na06h19yjw6qd9c5mbb9xfkkzgz5mnssj";
sha256 = "0lhl4rrfmsi76498mg5si2xagl8l2pi5d92dxhsyzszpwn5jdp57";
};
cargoSha256 = "083p7z7blj064840ddgnxvqjmih4bmy92clds3qgv5v7lh63wfmn";
buildInputs = [ cmake libzip ];
cargoSha256 = "102haqix13nwcncng1s8qkw68spn6fhh3vysk2nbahw6f78zczqg";
meta = with stdenv.lib; {
description = "Serverless Information Tracker";
homepage = http://sit-it.org/;
homepage = https://sit.sh/;
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ dywedir ];
maintainers = with maintainers; [ dywedir yrashk ];
platforms = platforms.all;
};
}