mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 14:33:22 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
37 lines
1.1 KiB
Nix
37 lines
1.1 KiB
Nix
{ lib, stdenv, makeWrapper, fetchzip, python3, python3Packages }:
|
|
let
|
|
threaded_servers = python3Packages.buildPythonPackage {
|
|
name = "threaded_servers";
|
|
src = fetchzip {
|
|
url = "https://xyne.archlinux.ca/projects/python3-threaded_servers/src/python3-threaded_servers-2018.6.tar.xz";
|
|
sha256 = "1irliz90a1dk4lyl7mrfq8qnnrfad9czvbcw1spc13zyai66iyhf";
|
|
};
|
|
|
|
# stuff we don't care about pacserve
|
|
doCheck = false;
|
|
};
|
|
wrappedPython = python3.withPackages (_: [ threaded_servers ]);
|
|
in stdenv.mkDerivation {
|
|
pname = "quickserve";
|
|
version = "2018";
|
|
|
|
dontUnpack = true;
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/bin
|
|
makeWrapper ${wrappedPython}/bin/python $out/bin/quickserve \
|
|
--add-flags -mThreadedServers.PeeredQuickserve
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Simple HTTP server for quickly sharing files";
|
|
homepage = "https://xyne.archlinux.ca/projects/quickserve/";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [ lassulus ];
|
|
mainProgram = "quickserve";
|
|
};
|
|
}
|