forked from mirrors/nixpkgs
Add Veracity distributed VCS (+ issue tracker)
svn path=/nixpkgs/trunk/; revision=23031
This commit is contained in:
parent
5792074ddc
commit
87cbef96ca
49
pkgs/applications/version-management/veracity/default.nix
Normal file
49
pkgs/applications/version-management/veracity/default.nix
Normal file
|
@ -0,0 +1,49 @@
|
|||
x@{builderDefsPackage
|
||||
, cmake, curl, patch, zlib, icu, sqlite, libuuid
|
||||
, readline, openssl, spidermonkey_1_8_0rc1
|
||||
, ...}:
|
||||
builderDefsPackage
|
||||
(a :
|
||||
let
|
||||
s = import ./src-for-default.nix;
|
||||
helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
|
||||
[];
|
||||
buildInputs = map (n: builtins.getAttr n x)
|
||||
(builtins.attrNames (builtins.removeAttrs x helperArgNames));
|
||||
|
||||
in
|
||||
rec {
|
||||
src = a.fetchUrlFromSrcInfo s;
|
||||
|
||||
inherit (s) name;
|
||||
inherit buildInputs;
|
||||
|
||||
phaseNames = ["prepareMakefiles" "doMake" "doDeploy"];
|
||||
|
||||
prepareMakefiles = a.fullDepEntry ''
|
||||
find src -type f -exec sed -e 's@#include \([<"]\)sgbrings/js/js@#include \1js/js@g' -i '{}' ';'
|
||||
cd ..
|
||||
mkdir build
|
||||
cd build
|
||||
export NIX_LDFLAGS="$NIX_LDFLAGS -lssl"
|
||||
cmake -G "Unix Makefiles" -D SGBRINGS_JS_INCDIR="${spidermonkey_1_8_0rc1}/include" -D SGBRINGS_JS_LIB="${spidermonkey_1_8_0rc1}/lib/libjs.a" ../veracity*
|
||||
'' ["minInit" "addInputs" "doUnpack"];
|
||||
|
||||
doDeploy = a.fullDepEntry ''
|
||||
ensureDir "$out/bin" "$out/share/veracity/"
|
||||
cp -r .. "$out/share/veracity/build-dir"
|
||||
ln -s "$out/share/veracity/build-dir/build/src/cmd/vv" "$out/bin"
|
||||
ln -s "$out/share/veracity/build-dir/build/src/script/vscript" "$out/bin"
|
||||
'' ["doMake" "minInit" "defEnsureDir"];
|
||||
|
||||
meta = {
|
||||
description = "A distributed version control system with template-based merging";
|
||||
maintainers = with a.lib.maintainers;
|
||||
[
|
||||
raskin
|
||||
];
|
||||
platforms = with a.lib.platforms;
|
||||
linux ;
|
||||
};
|
||||
}) x
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
rec {
|
||||
version="0.3.0.10246";
|
||||
name="veracity-0.3.0.10246";
|
||||
hash="03wn6dzbjv5p50xmiznynza5c1nk38v95mzv6rk6km1ykqprnlw0";
|
||||
url="http://download-us.sourcegear.com/Veracity/0.3.0.10246/veracity-source-${version}.tar.gz";
|
||||
advertisedUrl="http://download-us.sourcegear.com/Veracity/0.3.0.10246/veracity-source-0.3.0.10246.tar.gz";
|
||||
|
||||
}
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
downloadPage = "http://sourcegear.com/veracity/downloads.html";
|
||||
baseName = "veracity";
|
||||
}
|
|
@ -4,4 +4,7 @@ install: $(PROGRAM) $(SHARED_LIBRARY)
|
|||
cp -v $(PROGRAM) $(DIST)/bin
|
||||
cp -v $(SHARED_LIBRARY) $(LIBRARY) $(DIST)/lib
|
||||
cp -v $(JS_HFILES) $(API_HFILES) $(OTHER_HFILES) $(DIST)/include
|
||||
mkdir -pv $(DIST)/include/js
|
||||
find . -name '*.h' -exec cp '{}' $(DIST)/include/js ';'
|
||||
find . -name '*.msg' -exec cp '{}' $(DIST)/include/js ';'
|
||||
|
||||
|
|
|
@ -6108,6 +6108,8 @@ let
|
|||
qt = qt3;
|
||||
};
|
||||
|
||||
veracity = callPackage ../applications/version-management/veracity {};
|
||||
|
||||
viewMtn = builderDefsPackage (import ../applications/version-management/viewmtn/0.10.nix)
|
||||
{
|
||||
inherit monotone flup cheetahTemplate highlight ctags
|
||||
|
|
Loading…
Reference in a new issue