mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
753ac6174d
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/qrencode/versions. These checks were done: - built on NixOS - /nix/store/cywxaw8h01kh5rvkhx7bh2738icds31s-qrencode-4.0.2/bin/qrencode passed the binary check. - 1 of 1 passed binary check by having a zero exit code. - 0 of 1 passed binary check by having the new version present in output. - found 4.0.2 with grep in /nix/store/cywxaw8h01kh5rvkhx7bh2738icds31s-qrencode-4.0.2 - directory tree listing: https://gist.github.com/93c7bac0fe3aae76a9ef5ebbd9fba7de - du listing: https://gist.github.com/2b0d6fa748528181bfed9cbb453ed75a
21 lines
514 B
Nix
21 lines
514 B
Nix
{ stdenv, fetchurl, libpng, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "qrencode-4.0.2";
|
|
|
|
src = fetchurl {
|
|
url = "${meta.homepage}/${name}.tar.bz2";
|
|
sha256 = "1d2q5d3v8g3hsi3h5jq4n177bjhf3kawms09immw7p187f6jgjy9";
|
|
};
|
|
|
|
buildInputs = [ libpng ];
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://fukuchi.org/works/qrencode/;
|
|
description = "QR code encoder";
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ yegortimoshenko ];
|
|
};
|
|
}
|