Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / version-management / vcsh / default.nix
blob0625d0a684e0069cb72645b7706648c56c693a6f
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.5";
13   src = fetchurl {
14     url = "https://github.com/RichiH/vcsh/releases/download/v${version}/${pname}-${version}.tar.xz";
15     sha256 = "0bf3gacbyxw75ksd8y6528kgk7mqx6grz40gfiffxa2ghsz1xl01";
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   };