mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
27 lines
804 B
Nix
27 lines
804 B
Nix
{ stdenv, fetchFromGitHub, which, git, ronn, perlPackages }:
|
|
|
|
stdenv.mkDerivation {
|
|
version = "1.20170915"; # date of commit we're pulling
|
|
pname = "vcsh";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "RichiH";
|
|
repo = "vcsh";
|
|
rev = "eadb8df6aa71a76e5be36492edcadb118bd862ac";
|
|
sha256 = "1wfzp8167lcq6akdpbi8fikjv0z3h1i5minh3423dljc04q0klm1";
|
|
};
|
|
|
|
buildInputs = [ which git ronn ]
|
|
++ (with perlPackages; [ perl ShellCommand TestMost TestDifferences TestDeep TestException TestWarn ]);
|
|
|
|
installPhase = "make install PREFIX=$out";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Version Control System for $HOME";
|
|
homepage = "https://github.com/RichiH/vcsh";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ ttuegel ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|