summary refs log tree commit diff
path: root/pkgs/applications/version-management/vcprompt/default.nix
blob: d4a4889f4a3f9e3520bdd1389f55db5002035e8d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib, stdenv, fetchhg, autoconf, sqlite }:

stdenv.mkDerivation rec {
  pname = "vcprompt";
  version = "1.2.1";

  src = fetchhg {
    url = "http://hg.gerg.ca/vcprompt/";
    rev = version;
    sha256 = "03xqvp6bfl98bpacrw4n82qv9cw6a4fxci802s3vrygas989v1kj";
  };

  buildInputs = [ sqlite autoconf ];

  preConfigure = ''
    autoconf
    makeFlags="$makeFlags PREFIX=$out"
  '';

  meta = with lib; {
    description = ''
      A little C program that prints a short string with barebones information
      about the current working directory for various version control systems
    '';
    homepage    = "http://hg.gerg.ca/vcprompt";
    maintainers = with maintainers; [ ];
    platforms   = with platforms; linux ++ darwin;
    license = licenses.gpl2Plus;
  };
}