Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / misc / xrq / default.nix
blob22ad3d789ac97c34c30898aed3d8e45748d83f99
1 { lib, stdenv, fetchFromGitHub, libX11 }:
3 stdenv.mkDerivation {
4   pname = "xrq";
5   version = "unstable-2016-01-15";
7   src = fetchFromGitHub {
8     owner = "arianon";
9     repo = "xrq";
10     rev = "d5dc19c63881ebdd1287a02968e3a1447dde14a9";
11     sha256 = "1bxf6h3fjw3kjraz7028m7p229l423y1ngy88lqvf0xl1g3dhp36";
12   };
14   installPhase = ''
15     make PREFIX=$out install
16   '';
18   outputs = [ "out" "man" ];
20   buildInputs = [ libX11 ];
22   meta = {
23     description = "X utility for querying xrdb";
24     homepage = "https://github.com/arianon/xrq";
25     license = lib.licenses.mit;
26     platforms = with lib.platforms; unix;
27   };