wsdd: 0.7.0 -> 0.7.1

This commit is contained in:
Izorkin 2023-03-24 19:00:56 +03:00
parent e8c9c38dde
commit 376345c705
No known key found for this signature in database
GPG Key ID: 1436C1B3F3679F09

@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "wsdd";
version = "0.7.0";
version = "0.7.1";
src = fetchFromGitHub {
owner = "christgau";
repo = pname;
rev = "v${version}";
sha256 = "sha256-9cwzkF2mg6yOIsurLMXTLoEIOsKbPIWMicpWBQ0XVhE=";
hash = "sha256-xfZVGi3OxuRI+Zh6L3Ru4J4j5BB1EAN3fllRCVA/c5o=";
};
outputs = [ "out" "man" ];
@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
installPhase = ''
install -Dm0555 src/wsdd.py $out/bin/wsdd
installManPage man/wsdd.1
installManPage man/wsdd.8
wrapProgram $out/bin/wsdd --prefix PYTHONPATH : "$PYTHONPATH"
'';