Merge pull request #6210 from ehmry/ratox
ratox: initial package at v0.2
This commit is contained in:
commit
5ae6bf304c
@ -0,0 +1,29 @@
|
|||||||
|
{ stdenv, fetchgit, libtoxcore
|
||||||
|
, conf ? null }:
|
||||||
|
|
||||||
|
with stdenv.lib;
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "ratox-dev-20150107";
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url = "git://git.2f30.org/ratox";
|
||||||
|
rev = "8be76e4cc829d86b8e1cae43a0d932600d6ff9fb";
|
||||||
|
sha256 = "7fe492de3e69a08f9c1bb59a319d0e410905f06514abe99b4d4fe5c899650448";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ libtoxcore ];
|
||||||
|
|
||||||
|
configFile = optionalString (conf!=null) (builtins.toFile "config.h" conf);
|
||||||
|
preConfigure = optionalString (conf!=null) "cp ${configFile} config.def.h";
|
||||||
|
|
||||||
|
preBuild = "makeFlags=PREFIX=$out";
|
||||||
|
|
||||||
|
meta =
|
||||||
|
{ description = "FIFO based tox client";
|
||||||
|
homepage = http://ratox.2f30.org/;
|
||||||
|
license = licenses.isc;
|
||||||
|
maintainers = with maintainers; [ emery ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -11066,6 +11066,8 @@ let
|
|||||||
|
|
||||||
rapidsvn = callPackage ../applications/version-management/rapidsvn { };
|
rapidsvn = callPackage ../applications/version-management/rapidsvn { };
|
||||||
|
|
||||||
|
ratox = callPackage ../applications/networking/instant-messengers/ratox { };
|
||||||
|
|
||||||
ratpoison = callPackage ../applications/window-managers/ratpoison { };
|
ratpoison = callPackage ../applications/window-managers/ratpoison { };
|
||||||
|
|
||||||
rawtherapee = callPackage ../applications/graphics/rawtherapee {
|
rawtherapee = callPackage ../applications/graphics/rawtherapee {
|
||||||
|
Loading…
Reference in New Issue
Block a user