nixpkgs/pkgs/tools/misc/xiccd/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

25 lines
683 B
Nix

{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libX11, libXrandr, glib, colord }:
stdenv.mkDerivation rec {
name = "xiccd-${version}";
version = "0.2.4";
src = fetchFromGitHub {
owner = "agalakhov";
repo = "xiccd";
rev = "v${version}";
sha256 = "0dhv913njzm80g5lwak5znmxllfa6rrkifwja8vk133lyxnarqra";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ libX11 libXrandr glib colord ];
meta = with stdenv.lib; {
description = "X color profile daemon";
homepage = https://github.com/agalakhov/xiccd;
license = licenses.gpl3;
maintainers = with maintainers; [ abbradar ];
platforms = platforms.linux;
};
}