4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
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;
|
|
};
|
|
}
|