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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
1.0 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoconf, automake, pkg-config, libtool }:
2019-04-07 12:46:58 +00:00
stdenv.mkDerivation rec {
2020-09-05 05:46:28 +00:00
version = "3.2p4";
pname = "libow";
2019-04-07 12:46:58 +00:00
src = fetchFromGitHub {
owner = "owfs";
repo = "owfs";
rev = "v${version}";
2020-09-05 05:46:28 +00:00
sha256 = "0dln1ar7bxwhpi36sccmpwapy7iz4j097rbf02mgn42lw5vrcg3s";
2019-04-07 12:46:58 +00:00
};
2021-05-17 17:49:38 +00:00
nativeBuildInputs = [ autoconf automake libtool pkg-config ];
preConfigure = ''
# Tries to use glibtoolize on Darwin, but it shouldn't for Nix.
sed -i -e 's/glibtoolize/libtoolize/g' bootstrap
./bootstrap
'';
configureFlags = [
"--disable-owtcl"
"--disable-owphp"
"--disable-owpython"
"--disable-zero"
"--disable-owshell"
"--disable-owhttpd"
"--disable-owftpd"
"--disable-owserver"
"--disable-owperl"
"--disable-owtap"
"--disable-owmon"
"--disable-owexternal"
];
2019-04-07 12:46:58 +00:00
meta = with lib; {
2019-04-07 12:46:58 +00:00
description = "1-Wire File System full library";
homepage = "https://owfs.org/";
2019-04-07 12:46:58 +00:00
license = licenses.gpl2;
maintainers = with maintainers; [ disserman ];
platforms = platforms.unix;
};
}