nixpkgs/pkgs/applications/version-management/pijul/default.nix

38 lines
899 B
Nix
Raw Normal View History

2016-04-20 12:08:12 +00:00
{ stdenv, fetchdarcs, rustPlatform, openssl, libssh }:
2015-10-21 10:31:39 +00:00
2016-04-20 12:08:12 +00:00
with rustPlatform;
buildRustPackage rec {
2015-10-21 10:31:39 +00:00
name = "pijul-${version}";
version = "0.2-6ab9ba";
2015-10-21 10:31:39 +00:00
src = fetchdarcs {
url = "http://pijul.org/";
context = ./pijul.org.context;
sha256 = "1cgkcr5wdkwj7s0rda90bfchbwmchgi60w5d637894w20hkplsr4";
2015-10-21 10:31:39 +00:00
};
sourceRoot = "fetchdarcs/pijul";
depsSha256 = "110bj2lava1xs75z6k34aip7zb7rcmnxk5hmiyi32i9hs0ddsdrz";
2015-10-21 10:31:39 +00:00
cargoUpdateHook = ''
cp -r ../libpijul src/
2015-10-21 10:31:39 +00:00
'';
setSourceRoot = ''
chmod -R u+w "$sourceRoot"
cp -r "$sourceRoot"/../libpijul "$sourceRoot"/src/
'';
buildInputs = [ openssl libssh ];
2015-10-21 10:31:39 +00:00
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 ];
};
}