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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
758 B
Nix
Raw Normal View History

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