evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / in / ink / package.nix
blobd8f13d795c8260e48b0d6a90a9beeba2630a97d6
1 { lib, stdenv, fetchurl, libinklevel }:
3 stdenv.mkDerivation rec {
4   pname = "ink";
5   version = "0.5.3";
7   src = fetchurl {
8     url = "mirror://sourceforge/ink/ink-${version}.tar.gz";
9     sha256 = "1fk0b8vic04a3i3vmq73hbk7mzbi57s8ks6ighn3mvr6m2v8yc9d";
10   };
12   buildInputs = [
13     libinklevel
14   ];
16   outputs = [ "out" "man" ];
18   meta = with lib; {
19     description = "Command line tool for checking the ink level of your locally connected printer";
20     longDescription = ''
21       Ink is a command line tool for checking the ink level of your locally connected printer on a system which runs Linux or FreeBSD. Canon BJNP network printers are supported too.
22     '';
23     homepage = "https://ink.sourceforge.net/";
24     license = licenses.gpl2Only;
25     platforms = platforms.linux ++ platforms.freebsd;
26     maintainers = with maintainers; [ samb96 ];
27     mainProgram = "ink";
28   };