1 { lib, stdenv, fetchFromGitHub
7 stdenv.mkDerivation rec {
11 src = fetchFromGitHub {
12 owner = "michaelrsweet";
15 hash = "sha256-1OOLGQ8S4oRNSJanX/AzJ+g5F+jYnE/+o+ie5ucY22U=";
18 outputs = [ "out" "dev" ];
29 doInstallCheck = true;
30 installCheckPhase = ''
31 $out/bin/lprint --help
34 enableParallelBuilding = true;
37 description = "LPrint implements printing for a variety of common label and receipt printers connected via network or USB";
38 mainProgram = "lprint";
39 homepage = "https://github.com/michaelrsweet/lprint";
40 license = licenses.asl20;
41 platforms = platforms.linux;