mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
wmctrl: adopt package
This commit is contained in:
parent
b54bce24cf
commit
a7a75ba5c7
@ -1,14 +1,20 @@
|
||||
{stdenv, fetchurl, libX11, glib, pkgconfig, libXmu }:
|
||||
{ stdenv
|
||||
, fetchurl
|
||||
, libX11
|
||||
, glib
|
||||
, pkgconfig
|
||||
, libXmu
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
|
||||
name = "wmctrl-1.07";
|
||||
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://tomas.styblo.name/wmctrl/dist/${name}.tar.gz";
|
||||
sha256 = "1afclc57b9017a73mfs9w7lbdvdipmf9q0xdk116f61gnvyix2np";
|
||||
};
|
||||
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ libX11 libXmu glib ];
|
||||
|
||||
@ -19,5 +25,7 @@ stdenv.mkDerivation rec {
|
||||
description = "Command line tool to interact with an EWMH/NetWM compatible X Window Manager";
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
platforms = with stdenv.lib.platforms; all;
|
||||
maintainers = [ stdenv.lib.maintainers.Anton-Latukha ];
|
||||
};
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user