forked from mirrors/nixpkgs
ce1c1e3093
With this patch I remove myself as a maintainer for all packages I currently maintain. This is due the fact that I will be basically off the grid from May 2018 until early 2019, as I will be on a trip through north america. I will revert this patch as soon as I'm back, as I plan to continue contributing to nixpkgs then. But as I cannot maintain anything during that time, I'd like to get this patch merged. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
47 lines
774 B
Nix
47 lines
774 B
Nix
{ stdenv
|
|
, fetchFromGitHub
|
|
, openssl
|
|
, gcc
|
|
, zlib
|
|
, libssh
|
|
, cmake
|
|
, perl
|
|
, pkgconfig
|
|
, rustPlatform
|
|
}:
|
|
|
|
with rustPlatform;
|
|
|
|
buildRustPackage rec {
|
|
name = "git-dit-${version}";
|
|
version = "0.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "neithernut";
|
|
repo = "git-dit";
|
|
rev = "v${version}";
|
|
sha256 = "1sx6sc2dj3l61gbiqz8vfyhw5w4xjdyfzn1ixz0y8ipm579yc7a2";
|
|
};
|
|
|
|
cargoSha256 = "08zbvjwjdpv2sbj6mh73py82inhs18jvmh8m9k4l94fcz6ykgqwr";
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkgconfig
|
|
perl
|
|
];
|
|
|
|
buildInputs = [
|
|
openssl
|
|
libssh
|
|
zlib
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
inherit (src.meta) homepage;
|
|
description = "Decentralized Issue Tracking for git";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ Profpatsch ];
|
|
};
|
|
}
|