summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Hoeg <peter@speartail.com>2017-01-07 22:58:45 +0800
committerPeter Hoeg <peter@speartail.com>2017-01-07 22:58:45 +0800
commit24aae1effe0d7d65fb7117fc99e82890fb49d466 (patch)
tree113c8c597b664489fe942e5b363acb74054f4d51 /pkgs
parent7ee897a3b3aa75dc53bd408ceea5f9e4e98822b2 (diff)
downloadnixpkgs-24aae1effe0d7d65fb7117fc99e82890fb49d466.tar
nixpkgs-24aae1effe0d7d65fb7117fc99e82890fb49d466.tar.gz
nixpkgs-24aae1effe0d7d65fb7117fc99e82890fb49d466.tar.bz2
nixpkgs-24aae1effe0d7d65fb7117fc99e82890fb49d466.tar.lz
nixpkgs-24aae1effe0d7d65fb7117fc99e82890fb49d466.tar.xz
nixpkgs-24aae1effe0d7d65fb7117fc99e82890fb49d466.tar.zst
nixpkgs-24aae1effe0d7d65fb7117fc99e82890fb49d466.zip
qrcode: 2014-01-01 -> 2016-08-04
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/graphics/qrcode/default.nix39
1 files changed, 14 insertions, 25 deletions
diff --git a/pkgs/tools/graphics/qrcode/default.nix b/pkgs/tools/graphics/qrcode/default.nix
index 606e546af29..44444e6148a 100644
--- a/pkgs/tools/graphics/qrcode/default.nix
+++ b/pkgs/tools/graphics/qrcode/default.nix
@@ -1,24 +1,14 @@
-{ 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 = "1qli0b62yngqj66v6vdqqgcysy3q3fr5vwpf7yf0d9a0dg862x8a";
-  };
-  buildInputs = [
-  ];
-in
-stdenv.mkDerivation {
-  inherit (s) name version;
-  inherit buildInputs;
+{ stdenv, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+  name = "qrcode-git-${version}";
+  version = "20160804";
 
-  src = fetchgit {
-    inherit (s) rev url sha256;
+  src = fetchFromGitHub {
+    owner  = "qsantos";
+    repo   = "qrcode";
+    rev    = "ad0fdb4aafd0d56b903f110f697abaeb27deee73";
+    sha256 = "0v81745nx5gny2g05946k8j553j18a29ikmlyh6c3syq6c15k8cf";
   };
 
   NIX_CFLAGS_COMPILE = "-Wno-error=unused-result";
@@ -29,11 +19,10 @@ stdenv.mkDerivation {
     cp DOCUMENTATION LICENCE "$out/share/doc/qrcode"
   '';
 
-  meta = {
-    inherit (s) version;
+  meta = with stdenv.lib; {
     description = ''A small QR-code tool'';
-    license = stdenv.lib.licenses.gpl3Plus;
-    maintainers = [stdenv.lib.maintainers.raskin];
-    platforms = stdenv.lib.platforms.linux;
+    license = licenses.gpl3Plus;
+    maintainers = with maintainers; [ raskin ];
+    platforms = with platforms; linux;
   };
 }