mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-24 05:44:13 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
37 lines
911 B
Nix
37 lines
911 B
Nix
{ lib, stdenv
|
|
, fetchurl
|
|
, libX11
|
|
, glib
|
|
, pkg-config
|
|
, libXmu
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "wmctrl";
|
|
version = "1.07";
|
|
|
|
src = fetchurl {
|
|
# NOTE: 2019-04-11: There is also a semi-official mirror: http://tripie.sweb.cz/utils/wmctrl/
|
|
url = "https://sites.google.com/site/tstyblo/wmctrl/${pname}-${version}.tar.gz";
|
|
sha256 = "1afclc57b9017a73mfs9w7lbdvdipmf9q0xdk116f61gnvyix2np";
|
|
};
|
|
|
|
strictDeps = true;
|
|
depsBuildBuild = [ pkg-config ];
|
|
nativeBuildInputs = [ glib.dev ];
|
|
buildInputs = [ libX11 libXmu glib ];
|
|
|
|
patches = [ ./64-bit-data.patch ];
|
|
|
|
meta = {
|
|
homepage = "https://sites.google.com/site/tstyblo/wmctrl";
|
|
description = "CLI tool to interact with EWMH/NetWM compatible X Window Managers";
|
|
license = lib.licenses.gpl2Plus;
|
|
platforms = with lib.platforms; all;
|
|
maintainers = [ lib.maintainers.Anton-Latukha ];
|
|
mainProgram = "wmctrl";
|
|
};
|
|
|
|
}
|