2019-04-07 13:46:58 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoconf, automake, pkgconfig, libtool }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-01-26 07:01:24 +00:00
|
|
|
version = "3.2p3";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libow";
|
2019-04-07 13:46:58 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "owfs";
|
|
|
|
repo = "owfs";
|
|
|
|
rev = "v${version}";
|
2020-01-26 07:01:24 +00:00
|
|
|
sha256 = "02l3r4ixhicph5iqxdjanck2gbqkfs9vnnac112bzlvlw3x9r03m";
|
2019-04-07 13:46:58 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoconf automake pkgconfig ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "1-Wire File System full library";
|
2019-07-10 20:52:51 +01:00
|
|
|
homepage = https://owfs.org/;
|
2019-04-07 13:46:58 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ disserman ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ libtool ];
|
|
|
|
|
|
|
|
preConfigure = "./bootstrap";
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--disable-owtcl"
|
|
|
|
"--disable-owphp"
|
|
|
|
"--disable-owpython"
|
|
|
|
"--disable-zero"
|
|
|
|
"--disable-owshell"
|
|
|
|
"--disable-owhttpd"
|
|
|
|
"--disable-owftpd"
|
|
|
|
"--disable-owserver"
|
|
|
|
"--disable-owperl"
|
|
|
|
"--disable-owtcl"
|
|
|
|
"--disable-owtap"
|
|
|
|
"--disable-owmon"
|
|
|
|
"--disable-owexternal"
|
|
|
|
];
|
|
|
|
}
|