nixpkgs/pkgs/by-name/ws/wsdd/package.nix

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

53 lines
996 B
Nix
Raw Normal View History

2022-12-19 11:12:39 +00:00
{
lib,
stdenv,
fetchFromGitHub,
installShellFiles,
makeWrapper,
nixosTests,
python3,
}:
2020-11-21 19:33:28 +00:00
stdenv.mkDerivation rec {
pname = "wsdd";
2024-04-04 07:08:26 +00:00
version = "0.8";
2020-11-21 19:33:28 +00:00
src = fetchFromGitHub {
owner = "christgau";
repo = pname;
rev = "v${version}";
2024-04-04 07:08:26 +00:00
hash = "sha256-T8/XlQpx4CtNy8LuLwOQBG9muFe9pp5583tDaCT4ReI=";
2020-11-21 19:33:28 +00:00
};
2022-12-19 11:12:39 +00:00
outputs = [
"out"
"man"
];
nativeBuildInputs = [
installShellFiles
makeWrapper
];
2020-11-21 19:33:28 +00:00
buildInputs = [ python3 ];
installPhase = ''
2022-12-19 11:12:39 +00:00
install -Dm0555 src/wsdd.py $out/bin/wsdd
2023-03-24 16:00:56 +00:00
installManPage man/wsdd.8
2020-11-21 19:33:28 +00:00
wrapProgram $out/bin/wsdd --prefix PYTHONPATH : "$PYTHONPATH"
'';
passthru = {
tests.samba-wsdd = nixosTests.samba-wsdd;
};
meta = with lib; {
2020-11-21 19:33:28 +00:00
homepage = "https://github.com/christgau/wsdd";
description = "Web Service Discovery (WSD) host daemon for SMB/Samba";
maintainers = with maintainers; [ izorkin ];
license = licenses.mit;
platforms = platforms.all;
2023-11-23 21:09:35 +00:00
mainProgram = "wsdd";
2020-11-21 19:33:28 +00:00
};
}