Skip to content

Commit

Permalink
urbit: 2015.09.26 -> 2016-06-02
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
brainrake committed Jun 18, 2016
1 parent 2a16e37 commit 08f4146
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions pkgs/misc/urbit/default.nix
@@ -1,15 +1,16 @@
{ stdenv, fetchgit, gcc, gmp, libsigsegv, openssl, automake, autoconf, ragel,
{ stdenv, fetchFromGitHub, gcc, gmp, libsigsegv, openssl, automake, autoconf, ragel,
cmake, re2c, libtool, ncurses, perl, zlib, python }:

stdenv.mkDerivation rec {

name = "urbit-${version}";
version = "2015.09.26";
version = "2016-06-02";

src = fetchgit {
url = "https://github.com/urbit/urbit.git";
rev = "c9592664c797b2dd74f26886528656f8a7058640";
sha256 = "0sgrxnmpqh54mgar81wlb6gff8c0pc24p53xwxr448g5shvnzjx9";
src = fetchFromGitHub {
owner = "urbit";
repo = "urbit";
rev = "8c113559872e4a97bce3f3ee5b370ad9545c7459";
sha256 = "055qdpp4gm0v04pddq4380pdsi0gp2ybgv1d2lchkhwsnjyl46jl";
};

buildInputs = with stdenv.lib; [
Expand All @@ -34,8 +35,8 @@ stdenv.mkDerivation rec {
'';

meta = with stdenv.lib; {
description = "an operating function";
homepage = http://urbit.org/preview/~2015.9.25/materials;
description = "An operating function";
homepage = http://urbit.org;
license = licenses.mit;
maintainers = with maintainers; [ mudri ];
};
Expand Down

0 comments on commit 08f4146

Please sign in to comment.