9 stdenv.mkDerivation rec {
14 url = "https://github.com/RichiH/vcsh/releases/download/v${version}/${pname}-${version}.tar.xz";
15 sha256 = "0bf3gacbyxw75ksd8y6528kgk7mqx6grz40gfiffxa2ghsz1xl01";
23 buildInputs = [ git ];
25 nativeCheckInputs = []
26 ++ (with perlPackages; [ perl ShellCommand TestMost ]);
28 outputs = [ "out" "doc" "man" ];
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;