blob: 975320fbf16a03e88b80b883f9649b8ae8ec352a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
{
lib,
stdenv,
fetchFromGitHub,
webos,
cmake,
pkg-config,
}:
stdenv.mkDerivation rec {
pname = "novacom";
version = "18";
src = fetchFromGitHub {
owner = "openwebos";
repo = "novacom";
rev = "submissions/${version}";
sha256 = "12s6g7l20kakyjlhqpli496miv2kfsdp17lcwhdrzdxvxl6hnf4n";
};
nativeBuildInputs = [
cmake
pkg-config
webos.cmake-modules
];
postPatch = ''
substituteInPlace CMakeLists.txt \
--replace-fail "cmake_minimum_required(VERSION 2.8.7)" "cmake_minimum_required(VERSION 3.10)"
'';
postInstall = ''
install -Dm755 -t $out/bin ../scripts/novaterm
substituteInPlace $out/bin/novaterm --replace "exec novacom" "exec $out/bin/novacom"
'';
meta = {
description = "Utility for communicating with WebOS devices";
homepage = "https://github.com/openwebos/novacom";
license = lib.licenses.asl20;
maintainers = [ ];
platforms = lib.platforms.linux;
};
}
|