Merge pull request #10507 from puffnfresh/package/pijul

pijul: init at 0.1
This commit is contained in:
Arseniy Seroka 2015-10-21 16:08:46 +03:00
commit c678cfb751
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ stdenv, fetchdarcs, ocaml, findlib, cryptokit, yojson, lmdb, zlib }:
stdenv.mkDerivation rec {
name = "pijul-${version}";
version = "0.1";
src = fetchdarcs {
url = "http://pijul.org/";
rev = version;
sha256 = "0r189xx900w4smq6nyy1wnrjf9sgqrqw5as0l7k6gq0ra36szzff";
};
buildInputs = [ ocaml findlib cryptokit yojson lmdb zlib ];
installPhase = ''
mkdir -p $out/bin
cp pijul $out/bin/
'';
meta = with stdenv.lib; {
homepage = https://pijul.org/;
description = "Fast DVCS based on a categorical theory of patches";
license = licenses.gpl3;
platforms = stdenv.lib.platforms.unix;
maintainers = with maintainers; [ puffnfresh ];
};
}

View file

@ -12298,6 +12298,10 @@ let
pig = callPackage ../applications/networking/cluster/pig { };
pijul = callPackage ../applications/version-management/pijul {
inherit (ocamlPackages) findlib cryptokit yojson;
};
playonlinux = callPackage ../applications/misc/playonlinux { };
shotcut = callPackage ../applications/video/shotcut { mlt = mlt-qt5; };