mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 00:53:57 +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.
51 lines
1013 B
Nix
51 lines
1013 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, freetype
|
|
, fontconfig
|
|
, libICE
|
|
, libX11
|
|
, libXp
|
|
, libXau
|
|
, libXext
|
|
, libXt
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lesstif";
|
|
version = "0.95.2";
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/lesstif/${pname}-${version}.tar.bz2";
|
|
sha256 = "1qzpxjjf7ri1jzv71mvq5m9g8hfaj5yzwp30rwxlm6n2b24a6jpb";
|
|
};
|
|
buildInputs = [
|
|
freetype
|
|
fontconfig
|
|
libICE
|
|
libX11
|
|
libXext
|
|
libXt
|
|
];
|
|
propagatedBuildInputs = [
|
|
libXau
|
|
libXp
|
|
];
|
|
|
|
# These patches fix a number of later issues - in particular the
|
|
# render_table_crash shows up in 'arb'. The same patches appear
|
|
# in Debian, so we assume they have been sent upstream.
|
|
#
|
|
patches = [
|
|
./c-missing_xm_h.patch
|
|
./c-render_table_crash.patch
|
|
./c-xpmpipethrough.patch
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Open source clone of the Motif widget set";
|
|
homepage = "https://lesstif.sourceforge.net";
|
|
platforms = platforms.unix;
|
|
license = with licenses; [ gpl2 lgpl2 ];
|
|
};
|
|
}
|