nixpkgs/pkgs/applications/version-management/sit/default.nix

24 lines
623 B
Nix
Raw Normal View History

2018-02-22 12:18:10 +01:00
{ stdenv, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
name = "sit-${version}";
2018-04-13 16:57:21 +02:00
version = "0.3.0";
2018-02-22 12:18:10 +01:00
src = fetchFromGitHub {
owner = "sit-it";
repo = "sit";
rev = "v${version}";
2018-04-13 16:57:21 +02:00
sha256 = "1si4fg02wxi35hpkr58na06h19yjw6qd9c5mbb9xfkkzgz5mnssj";
2018-02-22 12:18:10 +01:00
};
2018-04-13 16:57:21 +02:00
cargoSha256 = "083p7z7blj064840ddgnxvqjmih4bmy92clds3qgv5v7lh63wfmn";
2018-02-22 12:18:10 +01:00
meta = with stdenv.lib; {
2018-04-13 16:57:21 +02:00
description = "Serverless Information Tracker";
2018-02-22 12:18:10 +01:00
homepage = http://sit-it.org/;
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ dywedir ];
platforms = platforms.all;
};
}