vcsh: 1.20170915 → 2.0.2

Co-authored-by: Bobby Rong <rjl931189261@126.com>
This commit is contained in:
Caleb Maclennan 2021-03-02 18:31:11 +03:00 committed by Doron Behar
parent 8c7c2c31b2
commit 074ef76e99

View File

@ -1,26 +1,38 @@
{ lib, stdenv, fetchFromGitHub, which, git, ronn, perlPackages }: { lib, stdenv
, fetchurl
, makeWrapper
, pkg-config
, git
, perlPackages
}:
stdenv.mkDerivation { stdenv.mkDerivation rec {
version = "1.20170915"; # date of commit we're pulling
pname = "vcsh"; pname = "vcsh";
version = "2.0.2";
src = fetchFromGitHub { src = fetchurl {
owner = "RichiH"; url = "https://github.com/RichiH/vcsh/releases/download/v${version}/${pname}-${version}.tar.xz";
repo = "vcsh"; sha256 = "0qdd4f6rm5rhnym9f114pcj9vafhjjpg962c4g420rn78fxhpz1z";
rev = "eadb8df6aa71a76e5be36492edcadb118bd862ac";
sha256 = "1wfzp8167lcq6akdpbi8fikjv0z3h1i5minh3423dljc04q0klm1";
}; };
buildInputs = [ which git ronn ] nativeBuildInputs = [
++ (with perlPackages; [ perl ShellCommand TestMost TestDifferences TestDeep TestException TestWarn ]); pkg-config
makeWrapper
];
installPhase = "make install PREFIX=$out"; buildInputs = [ git ];
checkInputs = []
++ (with perlPackages; [ perl ShellCommand TestMost ]);
outputs = [ "out" "doc" "man" ];
meta = with lib; { meta = with lib; {
description = "Version Control System for $HOME"; description = "Version Control System for $HOME";
homepage = "https://github.com/RichiH/vcsh"; homepage = "https://github.com/RichiH/vcsh";
changelog = "https://github.com/RichiH/vcsh/blob/v${version}/changelog";
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
maintainers = with maintainers; [ ttuegel ]; maintainers = with maintainers; [ ttuegel alerque ];
platforms = platforms.unix; platforms = platforms.unix;
}; };
} }