nixpkgs/pkgs/servers/wsdd/default.nix

41 lines
1,011 B
Nix
Raw Normal View History

2021-09-26 10:44:37 +02:00
{ lib, stdenv, fetchFromGitHub, makeWrapper, nixosTests, python3 }:
2020-11-21 20:33:28 +01:00
stdenv.mkDerivation rec {
pname = "wsdd";
2021-09-26 10:44:37 +02:00
version = "0.6.4";
2020-11-21 20:33:28 +01:00
src = fetchFromGitHub {
owner = "christgau";
repo = pname;
rev = "v${version}";
2021-09-26 10:44:37 +02:00
sha256 = "0lfvpbk1lkri597ac4gz5x4csfyik8axz4b41i03xsqv9bci2vh6";
2020-11-21 20:33:28 +01:00
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ python3 ];
patches = [
2021-09-26 10:44:37 +02:00
# Increase timeout to socket urlopen
# See https://github.com/christgau/wsdd/issues/80#issuecomment-76848906
./increase_timeout.patch
];
2020-11-21 20:33:28 +01:00
installPhase = ''
install -Dm0755 src/wsdd.py $out/bin/wsdd
wrapProgram $out/bin/wsdd --prefix PYTHONPATH : "$PYTHONPATH"
'';
passthru = {
tests.samba-wsdd = nixosTests.samba-wsdd;
};
meta = with lib; {
2020-11-21 20:33:28 +01:00
homepage = "https://github.com/christgau/wsdd";
description = "A Web Service Discovery (WSD) host daemon for SMB/Samba";
maintainers = with maintainers; [ izorkin ];
license = licenses.mit;
platforms = platforms.all;
};
}