mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 11:03: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.
29 lines
713 B
Nix
29 lines
713 B
Nix
{ lib, stdenv, fetchurl, tcl, tk, libX11, makeWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "chessdb";
|
|
version = "3.6.19-beta-1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/chessdb/ChessDB-${version}.tar.gz";
|
|
sha256 = "0brc3wln3bxp979iqj2w1zxpfd0pch8zzazhdmwf7acww4hrsz62";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = [ tcl tk libX11 ];
|
|
|
|
makeFlags = [
|
|
"BINDIR=$(out)/bin"
|
|
"SHAREDIR=$(out)/share/chessdb"
|
|
"SOUNDSDIR=$(out)/share/chessdb/sounds"
|
|
"TBDIR=$(out)/share/chessdb/tablebases"
|
|
"MANDIR=$(out)/man"
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://chessdb.sourceforge.net/";
|
|
description = "Free chess database";
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|