nixpkgs/pkgs/tools/graphics/qrcode/default.nix

29 lines
705 B
Nix
Raw Normal View History

2017-01-07 09:58:45 -05:00
{ stdenv, fetchFromGitHub }:
2019-08-13 17:52:01 -04:00
stdenv.mkDerivation {
pname = "qrcode-git";
2017-01-07 09:58:45 -05:00
version = "20160804";
2016-02-12 10:22:56 -05:00
2017-01-07 09:58:45 -05:00
src = fetchFromGitHub {
owner = "qsantos";
repo = "qrcode";
rev = "ad0fdb4aafd0d56b903f110f697abaeb27deee73";
sha256 = "0v81745nx5gny2g05946k8j553j18a29ikmlyh6c3syq6c15k8cf";
};
2016-02-12 10:22:56 -05:00
NIX_CFLAGS_COMPILE = "-Wno-error=unused-result";
2016-02-12 10:22:56 -05:00
installPhase = ''
mkdir -p "$out"/{bin,share/doc/qrcode}
cp qrcode "$out/bin"
cp DOCUMENTATION LICENCE "$out/share/doc/qrcode"
'';
2016-02-12 10:22:56 -05:00
2017-01-07 09:58:45 -05:00
meta = with stdenv.lib; {
description = ''A small QR-code tool'';
2017-01-07 09:58:45 -05:00
license = licenses.gpl3Plus;
maintainers = with maintainers; [ raskin ];
platforms = with platforms; linux;
};
}