mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
Add xcalib 0.8, a tiny monitor calibration loader
This commit is contained in:
parent
6d8109555e
commit
bdfe779d2c
25
pkgs/tools/X11/xcalib/default.nix
Normal file
25
pkgs/tools/X11/xcalib/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ stdenv, fetchurl, libX11, libXxf86vm, libXext }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "xcalib-0.8";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/xcalib/xcalib-source-0.8.tar.gz";
|
||||
sha256 = "8a112ee710e5446f6c36e62345b2066f10639d500259db8c48bf1716caea06e6";
|
||||
};
|
||||
|
||||
buildInputs = [ libX11 libXxf86vm libXext ];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp xcalib $out/bin/
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://xcalib.sourceforge.net/;
|
||||
description = "A tiny monitor calibration loader for X and MS-Windows";
|
||||
license = licenses.gpl;
|
||||
maintainers = [ rickynils ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -7980,6 +7980,8 @@ let
|
||||
|
||||
xbindkeys = callPackage ../tools/X11/xbindkeys { };
|
||||
|
||||
xcalib = callPackage ../tools/X11/xcalib { };
|
||||
|
||||
xchat = callPackage ../applications/networking/irc/xchat { };
|
||||
|
||||
xchm = callPackage ../applications/misc/xchm { };
|
||||
|
Loading…
Reference in New Issue
Block a user