2021-01-11 10:54:33 +03:00
|
|
|
{ lib, stdenv, fetchFromGitHub, curl, git, gmp, libsigsegv, meson, ncurses, ninja
|
2021-01-17 05:30:45 +03:00
|
|
|
, openssl, pkg-config, re2c, zlib
|
2018-08-05 21:03:55 +03:00
|
|
|
}:
|
2015-11-14 23:32:51 +03:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 15:41:18 +03:00
|
|
|
pname = "urbit";
|
2019-02-20 12:35:49 +03:00
|
|
|
version = "0.7.3";
|
2015-11-14 23:32:51 +03:00
|
|
|
|
2016-06-18 09:35:36 +03:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "urbit";
|
|
|
|
repo = "urbit";
|
2019-02-20 12:35:49 +03:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "192843pjzh8z55fd0x70m3l1vncmixljia3nphgn7j7x4976xkp2";
|
2018-07-19 09:27:22 +03:00
|
|
|
fetchSubmodules = true;
|
2015-11-14 23:32:51 +03:00
|
|
|
};
|
|
|
|
|
2021-01-17 05:30:45 +03:00
|
|
|
nativeBuildInputs = [ pkg-config ninja meson ];
|
2018-08-05 21:03:55 +03:00
|
|
|
buildInputs = [ curl git gmp libsigsegv ncurses openssl re2c zlib ];
|
2016-09-02 19:04:41 +03:00
|
|
|
|
2018-07-19 09:27:22 +03:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs .
|
|
|
|
'';
|
|
|
|
|
2021-01-11 10:54:33 +03:00
|
|
|
meta = with lib; {
|
2016-06-18 09:35:36 +03:00
|
|
|
description = "An operating function";
|
2020-04-01 04:11:51 +03:00
|
|
|
homepage = "https://urbit.org";
|
2015-11-14 23:32:51 +03:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ mudri ];
|
2016-08-02 20:50:55 +03:00
|
|
|
platforms = with platforms; linux;
|
2015-11-14 23:32:51 +03:00
|
|
|
};
|
|
|
|
}
|