xiccd: init at 0.2.2
This commit is contained in:
parent
e81c487ba2
commit
776845bbeb
|
@ -439,6 +439,7 @@
|
||||||
./services/web-servers/varnish/default.nix
|
./services/web-servers/varnish/default.nix
|
||||||
./services/web-servers/winstone.nix
|
./services/web-servers/winstone.nix
|
||||||
./services/web-servers/zope2.nix
|
./services/web-servers/zope2.nix
|
||||||
|
./services/x11/colord.nix
|
||||||
./services/x11/unclutter.nix
|
./services/x11/unclutter.nix
|
||||||
./services/x11/desktop-managers/default.nix
|
./services/x11/desktop-managers/default.nix
|
||||||
./services/x11/display-managers/auto.nix
|
./services/x11/display-managers/auto.nix
|
||||||
|
|
24
pkgs/tools/misc/xiccd/default.nix
Normal file
24
pkgs/tools/misc/xiccd/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libX11, libXrandr, glib, colord }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "xiccd-${version}";
|
||||||
|
version = "0.2.2";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "agalakhov";
|
||||||
|
repo = "xiccd";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "17p3vngmmjk52r5p8y41s19nwp7w25bgff68ffd50zdlicd33rsy";
|
||||||
|
};
|
||||||
|
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -3871,6 +3871,8 @@ let
|
||||||
|
|
||||||
xmpppy = pythonPackages.xmpppy;
|
xmpppy = pythonPackages.xmpppy;
|
||||||
|
|
||||||
|
xiccd = callPackage ../tools/misc/xiccd { };
|
||||||
|
|
||||||
xorriso = callPackage ../tools/cd-dvd/xorriso { };
|
xorriso = callPackage ../tools/cd-dvd/xorriso { };
|
||||||
|
|
||||||
xpf = callPackage ../tools/text/xml/xpf {
|
xpf = callPackage ../tools/text/xml/xpf {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user