2015-03-09 03:35:25 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, libtool, pkgconfig }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "unibilium-${version}";
|
|
|
|
|
2016-03-19 11:01:22 +00:00
|
|
|
version = "1.2.0";
|
2015-03-09 03:35:25 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mauke";
|
|
|
|
repo = "unibilium";
|
|
|
|
rev = "v${version}";
|
2016-03-19 11:01:22 +00:00
|
|
|
sha256 = "1qsw19irg70l29j7qv403f32l4rrzn53w7881a6h874j9gisl51s";
|
2015-03-09 03:35:25 +00:00
|
|
|
};
|
|
|
|
|
2015-06-10 09:03:23 +01:00
|
|
|
makeFlags = [ "PREFIX=$(out)" ]
|
|
|
|
++ stdenv.lib.optional stdenv.isDarwin "LIBTOOL=${libtool}/bin/libtool";
|
2015-03-09 03:35:25 +00:00
|
|
|
|
|
|
|
buildInputs = [ libtool pkgconfig ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A very basic terminfo library";
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.lgpl3Plus;
|
2016-06-06 09:56:08 +01:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2016-03-19 11:01:22 +00:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
2015-03-09 03:35:25 +00:00
|
|
|
};
|
|
|
|
}
|