urbit: init at 2015.09.26

This commit is contained in:
laMudri 2015-09-28 13:25:23 +01:00
parent f596f0323f
commit 4138fa09fd
2 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,42 @@
{ stdenv, fetchgit, gcc, gmp, libsigsegv, openssl, automake, autoconf, ragel,
cmake, re2c, libtool, ncurses, perl, zlib, python }:
stdenv.mkDerivation rec {
name = "urbit-${version}";
version = "2015.09.26";
src = fetchgit {
url = "https://github.com/urbit/urbit.git";
rev = "c9592664c797b2dd74f26886528656f8a7058640";
sha256 = "0sgrxnmpqh54mgar81wlb6gff8c0pc24p53xwxr448g5shvnzjx9";
};
buildInputs = with stdenv.lib; [
gcc gmp libsigsegv openssl automake autoconf ragel cmake re2c libtool
ncurses perl zlib python
];
configurePhase = ''
:
'';
buildPhase = ''
sed -i 's/-lcurses/-lncurses/' Makefile
mkdir -p $out
cp -r . $out/
cd $out
make
'';
installPhase = ''
:
'';
meta = with stdenv.lib; {
description = "an operating function";
homepage = http://urbit.org/preview/~2015.9.25/materials;
license = licenses.mit;
maintainers = with maintainers; [ mudri ];
};
}

View File

@ -14959,6 +14959,8 @@ let
tvheadend = callPackage ../servers/tvheadend { };
urbit = callPackage ../misc/urbit { };
utf8proc = callPackage ../development/libraries/utf8proc { };
vault = goPackages.vault.bin // { outputs = [ "bin" ]; };