summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pkgs/tools/graphics/qrcode/default.nix34
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/tools/graphics/qrcode/default.nix b/pkgs/tools/graphics/qrcode/default.nix
new file mode 100644
index 000000000000..e5bc5517b89e
--- /dev/null
+++ b/pkgs/tools/graphics/qrcode/default.nix
@@ -0,0 +1,34 @@
+{stdenv, fetchgit}:
+let
+ s =
+ rec {
+ baseName = "qrcode";
+ date = "2014-01-01";
+ version = "git-${date}";
+ name = "${baseName}-${version}";
+ url = "https://github.com/qsantos/qrcode";
+ rev = "2843cbada3b768f60ee1ae13c65160083558cc03";
+ sha256 = "0x321xhzxk6ldvpr2090w14khj9n2gfay9db5vvvli16affpcrvb";
+ };
+ buildInputs = [
+ ];
+in
+stdenv.mkDerivation {
+ inherit (s) name version;
+ inherit buildInputs;
+ src = fetchgit {
+ inherit (s) rev url sha256;
+ };
+ installPhase = ''
+ mkdir -p "$out"/{bin,share/doc/qrcode}
+ cp qrcode "$out/bin"
+ cp DOCUMENTATION LICENCE "$out/share/doc/qrcode"
+ '';
+ meta = {
+ inherit (s) version;
+ description = ''A small QR-code tool'';
+ license = stdenv.lib.licenses.gpl3Plus;
+ maintainers = [stdenv.lib.maintainers.raskin];
+ platforms = stdenv.lib.platforms.linux;
+ };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 3a7fbdac7128..32837a7ef809 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -10507,6 +10507,8 @@ let
qmmp = callPackage ../applications/audio/qmmp { };
+ qrcode = callPackage ../tools/graphics/qrcode {};
+
qsampler = callPackage ../applications/audio/qsampler { };
qsynth = callPackage ../applications/audio/qsynth { };