pijul: init at 0.1
This commit is contained in:
parent
5cbc177dfb
commit
c6c1d3f777
27
pkgs/applications/version-management/pijul/default.nix
Normal file
27
pkgs/applications/version-management/pijul/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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; };
|
||||
|
Loading…
Reference in New Issue
Block a user