Files
nixpkgs/pkgs/by-name/vc/vcprompt/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

41 lines
848 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
autoreconfHook,
sqlite,
}:
stdenv.mkDerivation {
pname = "vcprompt";
version = "1.3.0-unstable-2020-12-28";
src = fetchFromGitHub {
owner = "powerman";
repo = "vcprompt";
rev = "850bf44cd61723f6b46121f678ff94047e42f802";
hash = "sha256-w2gpekNx3RA7uxNLg0Nkf9/aoxZj3DR4foKI+4q8SKk=";
};
nativeBuildInputs = [
autoreconfHook
];
buildInputs = [
sqlite
];
makeFlags = [
"PREFIX=${placeholder "out"}"
];
meta = with lib; {
description = "Program that prints barebones information about the current working directory for various version control systems";
homepage = "https://github.com/powerman/vcprompt";
maintainers = [ ];
platforms = with platforms; linux ++ darwin;
license = licenses.gpl2Plus;
mainProgram = "vcprompt";
};
}