Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
60 lines
1.0 KiB
Nix
60 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
autoconf,
|
|
automake,
|
|
makeWrapper,
|
|
pkg-config,
|
|
unzip,
|
|
git,
|
|
perlPackages,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "vcsh";
|
|
version = "2.0.10";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/RichiH/vcsh/releases/download/v${finalAttrs.version}/vcsh-${finalAttrs.version}.zip";
|
|
hash = "sha256-M/UME2kNCxwzngKXMYp0cdps7LWVwoS2I/mTrvPts7g=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoconf
|
|
automake
|
|
makeWrapper
|
|
pkg-config
|
|
unzip
|
|
];
|
|
|
|
buildInputs = [ git ];
|
|
|
|
nativeCheckInputs =
|
|
[ ]
|
|
++ (with perlPackages; [
|
|
perl
|
|
ShellCommand
|
|
TestMost
|
|
]);
|
|
|
|
outputs = [
|
|
"out"
|
|
"doc"
|
|
"man"
|
|
];
|
|
|
|
meta = {
|
|
description = "Version Control System for $HOME";
|
|
homepage = "https://github.com/RichiH/vcsh";
|
|
changelog = "https://github.com/RichiH/vcsh/blob/v${finalAttrs.version}/changelog";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = with lib.maintainers; [
|
|
ttuegel
|
|
alerque
|
|
];
|
|
platforms = lib.platforms.unix;
|
|
mainProgram = "vcsh";
|
|
};
|
|
})
|