We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0934d96 + e550600 commit 9093c2dCopy full SHA for 9093c2d
pkgs/by-name/lp/lprint/package.nix
@@ -5,6 +5,8 @@
5
pappl,
6
cups,
7
pkg-config,
8
+ # Enables support for untested printers. It makes sense to default this to true, as it's unlikely to result in any issues
9
+ enableExperimental ? true,
10
}:
11
12
stdenv.mkDerivation rec {
@@ -32,6 +34,8 @@ stdenv.mkDerivation rec {
32
34
cups
33
35
];
36
37
+ configureFlags = lib.optional enableExperimental "--enable-experimental";
38
+
39
doInstallCheck = true;
40
installCheckPhase = ''
41
$out/bin/lprint --help
@@ -45,6 +49,6 @@ stdenv.mkDerivation rec {
45
49
homepage = "https://github.com/michaelrsweet/lprint";
46
50
license = licenses.asl20;
47
51
platforms = platforms.linux;
48
- maintainers = [ ];
52
+ maintainers = with lib.maintainers; [ pandapip1 ];
53
};
54
}
0 commit comments