cloud-print-connector: 2017-01-19 -> 1.11

This commit is contained in:
Jörg Thalheim
2017-05-20 18:21:25 +01:00
parent cc4f861f82
commit f3dce2cbda
2 changed files with 18 additions and 17 deletions
+10 -9
View File
@@ -1,5 +1,5 @@
# This file was generated by https://github.com/kamilchm/go2nix v1.2.0
{ pkgs ? import <nixpkgs> {}, stdenv, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:
{ stdenv, buildGoPackage, fetchFromGitHub, avahi, cups }:
# TODO: Add a service for gcp-cups-connector and perhaps some other
# kind of configuration for the same thing that gcp-connector-util
@@ -7,21 +7,22 @@
buildGoPackage rec {
name = "cloud-print-connector-unstable-${version}";
version = "2017-01-19";
version = "1.11";
rev = "481ad139cc023a3ba65e769f08f277368fa8a5de";
goPackagePath = "github.com/google/cloud-print-connector";
src = fetchgit {
inherit rev;
url = "https://github.com/google/cloud-print-connector";
sha256 = "0syq7s8qjspq33qd9ibvz0kwc1zxyh9jkhk7khdvgfv6n0dvql86";
src = fetchFromGitHub {
owner = "google";
repo = "cloud-print-connector";
sha256 = "1vryhhv92bsncy1bsx9j4graz3sz9ddmizakv2fdrns09mmcgchm";
rev = "v${version}";
};
goDeps = ./deps.nix;
buildInputs = [ pkgs.avahi pkgs.cups ];
buildInputs = [ avahi cups ];
meta = with stdenv.lib; {
description = "Share printers from your Windows, Linux, FreeBSD or OS X computer with ChromeOS and Android devices, using the Cloud Print Connector";
homepage = https://github.com/google/cloud-print-connector;
@@ -30,5 +31,5 @@ buildGoPackage rec {
# TODO: Fix broken build on OS X. The GitHub presently lists the
# FreeBSD build as broken too, but this may change in the future.
platforms = platforms.linux;
};
};
}