vcprompt: 1.2.1 -> 1.3.0-unstable-2020-12-28

Use a maintained fork.
This commit is contained in:
FliegendeWurst 2025-01-17 21:29:18 +01:00
parent bc6541114d
commit c75811f899

View File

@ -1,40 +1,37 @@
{ {
lib, lib,
stdenv, stdenv,
fetchhg, fetchFromGitHub,
autoconf, autoreconfHook,
sqlite, sqlite,
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "vcprompt"; pname = "vcprompt";
version = "1.2.1"; version = "1.3.0-unstable-2020-12-28";
src = fetchhg { src = fetchFromGitHub {
url = "http://hg.gerg.ca/vcprompt/"; owner = "powerman";
rev = version; repo = "vcprompt";
sha256 = "03xqvp6bfl98bpacrw4n82qv9cw6a4fxci802s3vrygas989v1kj"; rev = "850bf44cd61723f6b46121f678ff94047e42f802";
hash = "sha256-w2gpekNx3RA7uxNLg0Nkf9/aoxZj3DR4foKI+4q8SKk=";
}; };
nativeBuildInputs = [
autoreconfHook
];
buildInputs = [ buildInputs = [
sqlite sqlite
autoconf
]; ];
preConfigure = ''
autoconf
'';
makeFlags = [ makeFlags = [
"PREFIX=${placeholder "out"}" "PREFIX=${placeholder "out"}"
]; ];
meta = with lib; { meta = with lib; {
description = '' description = "Program that prints barebones information about the current working directory for various version control systems";
A little C program that prints a short string with barebones information homepage = "https://github.com/powerman/vcprompt";
about the current working directory for various version control systems
'';
homepage = "http://hg.gerg.ca/vcprompt";
maintainers = [ ]; maintainers = [ ];
platforms = with platforms; linux ++ darwin; platforms = with platforms; linux ++ darwin;
license = licenses.gpl2Plus; license = licenses.gpl2Plus;