mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
08f41462d7
Updated to latest revision in urbit git master, fixes build error caused by missing sources. Updated description and website. Fixed date/version format to ISO 8061.
44 lines
944 B
Nix
44 lines
944 B
Nix
{ stdenv, fetchFromGitHub, gcc, gmp, libsigsegv, openssl, automake, autoconf, ragel,
|
|
cmake, re2c, libtool, ncurses, perl, zlib, python }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "urbit-${version}";
|
|
version = "2016-06-02";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "urbit";
|
|
repo = "urbit";
|
|
rev = "8c113559872e4a97bce3f3ee5b370ad9545c7459";
|
|
sha256 = "055qdpp4gm0v04pddq4380pdsi0gp2ybgv1d2lchkhwsnjyl46jl";
|
|
};
|
|
|
|
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;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ mudri ];
|
|
};
|
|
}
|