nixpkgs/pkgs/development/libraries/libow/default.nix

44 lines
1,012 B
Nix
Raw Normal View History

2019-04-07 14:46:58 +02:00
{ stdenv, fetchFromGitHub, autoconf, automake, pkgconfig, libtool }:
stdenv.mkDerivation rec {
2020-01-26 08:01:24 +01:00
version = "3.2p3";
pname = "libow";
2019-04-07 14:46:58 +02:00
src = fetchFromGitHub {
owner = "owfs";
repo = "owfs";
rev = "v${version}";
2020-01-26 08:01:24 +01:00
sha256 = "02l3r4ixhicph5iqxdjanck2gbqkfs9vnnac112bzlvlw3x9r03m";
2019-04-07 14:46:58 +02:00
};
nativeBuildInputs = [ autoconf automake pkgconfig ];
meta = with stdenv.lib; {
description = "1-Wire File System full library";
2019-07-10 21:52:51 +02:00
homepage = https://owfs.org/;
2019-04-07 14:46:58 +02: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"
];
}