mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 12:53:05 +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.
36 lines
930 B
Nix
36 lines
930 B
Nix
{ lib, stdenv, fetchurl, libX11, xorgproto, imake, gccmakedep, libXt, libXmu
|
|
, libXaw, libXext, libSM, libICE, libXpm, libXp
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "vncrec";
|
|
version = "0.2"; # version taken from Arch AUR
|
|
|
|
src = fetchurl {
|
|
url = "http://ronja.twibright.com/utils/vncrec-twibright.tgz";
|
|
sha256 = "1yp6r55fqpdhc8cgrgh9i0mzxmkls16pgf8vfcpng1axr7cigyhc";
|
|
};
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
nativeBuildInputs = [ imake gccmakedep ];
|
|
buildInputs = [
|
|
libX11 xorgproto libXt libXmu libXaw
|
|
libXext libSM libICE libXpm libXp
|
|
];
|
|
|
|
makeFlags = [
|
|
"BINDIR=${placeholder "out"}/bin"
|
|
"MANDIR=${placeholder "out"}/share/man"
|
|
];
|
|
installTargets = [ "install" "install.man" ];
|
|
|
|
meta = {
|
|
description = "VNC recorder";
|
|
homepage = "http://ronja.twibright.com/utils/vncrec/";
|
|
platforms = lib.platforms.linux;
|
|
license = lib.licenses.gpl2Plus;
|
|
mainProgram = "vncrec";
|
|
};
|
|
}
|