fossil: install man page and bash shell completions
While at it, clean the derivation up a little.
This commit is contained in:
parent
7f76840034
commit
9d941bcd7b
@ -1,6 +1,16 @@
|
|||||||
{ stdenv
|
{ stdenv
|
||||||
, libiconv, fetchurl, zlib, openssl, tcl, readline, sqlite, ed, which
|
, installShellFiles
|
||||||
, tcllib, withJson ? true
|
, tcl
|
||||||
|
, libiconv
|
||||||
|
, fetchurl
|
||||||
|
, zlib
|
||||||
|
, openssl
|
||||||
|
, readline
|
||||||
|
, sqlite
|
||||||
|
, ed
|
||||||
|
, which
|
||||||
|
, tcllib
|
||||||
|
, withJson ? true
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -16,15 +26,18 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "1sxq1hn87fdikhbg9y3v4sjy4gxaifnx4dig8nx6xwd5mm7z74dk";
|
sha256 = "1sxq1hn87fdikhbg9y3v4sjy4gxaifnx4dig8nx6xwd5mm7z74dk";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ installShellFiles tcl ];
|
||||||
|
|
||||||
buildInputs = [ zlib openssl readline sqlite which ed ]
|
buildInputs = [ zlib openssl readline sqlite which ed ]
|
||||||
++ stdenv.lib.optional stdenv.isDarwin libiconv;
|
++ stdenv.lib.optional stdenv.isDarwin libiconv;
|
||||||
nativeBuildInputs = [ tcl ];
|
|
||||||
|
|
||||||
doCheck = stdenv.hostPlatform == stdenv.buildPlatform;
|
doCheck = stdenv.hostPlatform == stdenv.buildPlatform;
|
||||||
|
|
||||||
|
configureFlags = stdenv.lib.optional withJson "--json";
|
||||||
|
|
||||||
preCheck = ''
|
preCheck = ''
|
||||||
export TCLLIBPATH="${tcllib}/lib/tcllib${tcllib.version}"
|
export TCLLIBPATH="${tcllib}/lib/tcllib${tcllib.version}"
|
||||||
'';
|
'';
|
||||||
configureFlags = stdenv.lib.optional withJson "--json";
|
|
||||||
|
|
||||||
preBuild = ''
|
preBuild = ''
|
||||||
export USER=nonexistent-but-specified-user
|
export USER=nonexistent-but-specified-user
|
||||||
@ -33,9 +46,12 @@ stdenv.mkDerivation rec {
|
|||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/bin
|
mkdir -p $out/bin
|
||||||
INSTALLDIR=$out/bin make install
|
INSTALLDIR=$out/bin make install
|
||||||
|
|
||||||
|
installManPage fossil.1
|
||||||
|
installShellCompletion --name fossil.bash tools/fossil-autocomplete.bash
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Simple, high-reliability, distributed software configuration management";
|
description = "Simple, high-reliability, distributed software configuration management";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Fossil is a software configuration management system. Fossil is
|
Fossil is a software configuration management system. Fossil is
|
||||||
@ -45,11 +61,7 @@ stdenv.mkDerivation rec {
|
|||||||
from the others by being extremely simple to setup and operate.
|
from the others by being extremely simple to setup and operate.
|
||||||
'';
|
'';
|
||||||
homepage = "http://www.fossil-scm.org/";
|
homepage = "http://www.fossil-scm.org/";
|
||||||
license = stdenv.lib.licenses.bsd2;
|
license = licenses.bsd2;
|
||||||
platforms = with stdenv.lib.platforms; all;
|
maintainers = with maintainers; [ maggesi viric ];
|
||||||
maintainers = [ #Add your name here!
|
|
||||||
stdenv.lib.maintainers.maggesi
|
|
||||||
stdenv.lib.maintainers.viric
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user