biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / version-management / vcsh / default.nix
blob1477695506e6439ebed01aeef384323d69d7742f
1 { lib, stdenv
2 , fetchurl
3 , makeWrapper
4 , pkg-config
5 , git
6 , perlPackages
7 }:
9 stdenv.mkDerivation rec {
10   pname = "vcsh";
11   version = "2.0.8";
13   src = fetchurl {
14     url = "https://github.com/RichiH/vcsh/releases/download/v${version}/${pname}-${version}.tar.xz";
15     sha256 = "sha256-VgRA3v5PIKwizmXoc8f/YMoMCDGFJK/m2uhq3EsT1xQ=";
16   };
18   nativeBuildInputs = [
19     pkg-config
20     makeWrapper
21   ];
23   buildInputs = [ git ];
25   nativeCheckInputs = []
26     ++ (with perlPackages; [ perl ShellCommand TestMost ]);
28   outputs = [ "out" "doc" "man" ];
30   meta = with lib; {
31     description = "Version Control System for $HOME";
32     homepage = "https://github.com/RichiH/vcsh";
33     changelog = "https://github.com/RichiH/vcsh/blob/v${version}/changelog";
34     license = licenses.gpl2Plus;
35     maintainers = with maintainers; [ ttuegel alerque ];
36     platforms = platforms.unix;
37     mainProgram = "vcsh";
38   };