mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
26 lines
608 B
Nix
26 lines
608 B
Nix
{ stdenv, fetchFromGitHub, libxcb }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wmutils-libwm";
|
|
version = "1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wmutils";
|
|
repo = "libwm";
|
|
rev = "v${version}";
|
|
sha256 = "1lpbqrilhffpzc0b7vnp08jr1wr96lndwc7y0ck8hlbzlvm662l0";
|
|
};
|
|
|
|
buildInputs = [ libxcb ];
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A small library for X window manipulation";
|
|
homepage = "https://github.com/wmutils/libwm";
|
|
license = licenses.isc;
|
|
maintainers = with maintainers; [ bhougland ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|