31f5dd3f36
- remove trailing whitespace - use spaces for indentation
44 lines
1.2 KiB
Nix
44 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, makeWrapper, nixosTests, python3, fetchpatch }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wsdd";
|
|
version = "0.6.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "christgau";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0444xh1r5wd0zfch1hg1f9s4cw68srrm87hqx16qvlgx6jmz5j0p";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildInputs = [ python3 ];
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
# https://github.com/christgau/wsdd/issues/72
|
|
name = "fix_send_messages_using_correct_socket.patch";
|
|
url = "https://github.com/christgau/wsdd/commit/1ed74fe73a9fe2e2720859e2822116d65e4ffa5b.patch";
|
|
sha256 = "1n9bqvh20nhnvnc5pxvzf9kk8nky6rmbmfryg65lfmr1hmg676zg";
|
|
})
|
|
];
|
|
|
|
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; {
|
|
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;
|
|
};
|
|
}
|