Merge pull request #193021 from aaronjheng/wolfebin

wolfebin: 5.4 -> 5.6
This commit is contained in:
Christian Kögler
2022-10-10 17:24:31 +02:00
committed by GitHub
2 changed files with 6 additions and 8 deletions
+5 -5
View File
@@ -1,17 +1,17 @@
{ lib, stdenv, fetchFromGitHub, python }:
{ lib, stdenv, fetchFromGitHub, python3 }:
stdenv.mkDerivation rec {
version = "5.4";
pname = "wolfebin";
version = "5.6";
src = fetchFromGitHub {
owner = "thejoshwolfe";
repo = "wolfebin";
rev = version;
sha256 = "16xj6zz30sn9q05p211bmmsl0i6fknfxf8dssn6knm6nkiym8088";
sha256 = "sha256-tsI71/UdLaGZ3O2lNTd1c8S5OS2imquLovh0n0ez8Ts=";
};
buildInputs = [ python ];
buildInputs = [ python3 ];
installPhase = ''
install -m 755 -d $out/bin
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/thejoshwolfe/wolfebin";
description = "Quick and easy file sharing";
license = licenses.mit;
maintainers = [ maintainers.andrewrk ];
maintainers = with maintainers; [ andrewrk ];
platforms = platforms.all;
};
}
+1 -3
View File
@@ -12408,9 +12408,7 @@ with pkgs;
wstunnel = haskell.lib.compose.justStaticExecutables haskellPackages.wstunnel;
wolfebin = callPackage ../tools/networking/wolfebin {
python = python2;
};
wolfebin = callPackage ../tools/networking/wolfebin { };
xautoclick = callPackage ../applications/misc/xautoclick {};