mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
f2a20b6e52
Replace "waf" phases with wafHook that manages everything automatically. Should make things more modular. Packages affected here are: - a2jmidid - ams-lv2 - ardour - fomp - guitarix - ingen - jalv - mda-lv2 - non - patchage - hamster-time-tracker - kupfer - xiphos - xfce4-dockbarx-plugin - xfce4-namebar-plugin - dropbox - clasp - aubio - liliv - lv2 - lvtk - ntk - raul - sratom - suil - ganv - ndn-cxx - ns3 - serd - sord - termbox - wxmupen64plus - jackaudio - pflask - blockhash - glmark2 - weighttp
21 lines
630 B
Nix
21 lines
630 B
Nix
{ stdenv, fetchFromGitHub, python3, wafHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "termbox-${version}";
|
|
version = "1.1.2";
|
|
src = fetchFromGitHub {
|
|
owner = "nsf";
|
|
repo = "termbox";
|
|
rev = "v${version}";
|
|
sha256 = "08yqxzb8fny8806p7x8a6f3phhlbfqdd7dhkv25calswj7w1ssvs";
|
|
};
|
|
nativeBuildInputs = [ python3 wafHook ];
|
|
meta = with stdenv.lib; {
|
|
description = "Library for writing text-based user interfaces";
|
|
license = licenses.mit;
|
|
homepage = "https://github.com/nsf/termbox#readme";
|
|
downloadPage = "https://github.com/nsf/termbox/releases";
|
|
maintainers = with maintainers; [ fgaz ];
|
|
};
|
|
}
|