24 lines
657 B
Nix
24 lines
657 B
Nix
{ stdenv, fetchFromGitHub, rustPlatform }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
name = "sit-${version}";
|
|
version = "0.1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sit-it";
|
|
repo = "sit";
|
|
rev = "v${version}";
|
|
sha256 = "1ysy1lhb7fxy02a3c9xk2awa49svnfa8bqcz2aj4x56r2f8vhj0h";
|
|
};
|
|
|
|
cargoSha256 = "1y8a8a9jn9f374sy5fs1snmpiqyckqc0aw7idwnpfr912c1zzrxw";
|
|
|
|
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;
|
|
};
|
|
}
|