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

24 lines
657 B
Nix
Raw Normal View History

2018-02-22 11:18:10 +00:00
{ stdenv, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
name = "sit-${version}";
2018-04-08 08:50:58 +00:00
version = "0.2.1";
2018-02-22 11:18:10 +00:00
src = fetchFromGitHub {
owner = "sit-it";
repo = "sit";
rev = "v${version}";
2018-04-08 08:50:58 +00:00
sha256 = "1gcw5fqaqpxl2xgry0w8750g2msrk884zj1slym6r3nj7s2m9j22";
2018-02-22 11:18:10 +00:00
};
2018-04-08 08:50:58 +00:00
cargoSha256 = "0hb82j97m8vw8m6gpb6s3bbi31xxv9nqh3aq7hkbmp1pqc02sg3q";
2018-02-22 11:18:10 +00:00
meta = with stdenv.lib; {
description = "SCM-agnostic, file-based, offline-first, immutable issue tracker";
homepage = http://sit-it.org/;
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ dywedir ];
platforms = platforms.all;
};
}