mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 19:33:03 +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.
34 lines
974 B
Nix
34 lines
974 B
Nix
{ lib, stdenv, fetchsvn, cmake, libusb-compat-0_1, libftdi }:
|
|
|
|
# The xc3sprog project doesn't seem to make proper releases, they only put out
|
|
# prebuilt binary subversion snapshots on sourceforge.
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "787";
|
|
pname = "xc3sprog";
|
|
|
|
src = fetchsvn {
|
|
url = "https://svn.code.sf.net/p/xc3sprog/code/trunk";
|
|
sha256 = "1rfhms3i7375kdlg0sdg5k52ix3xv5llj2dr30vamyg7pk74y8rx";
|
|
rev = version;
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ libusb-compat-0_1 libftdi ];
|
|
|
|
cmakeFlags = [
|
|
# file RPATH_CHANGE could not write new RPATH
|
|
"-DCMAKE_SKIP_BUILD_RPATH=ON"
|
|
# fix build with gcc 11+
|
|
"-DCMAKE_CXX_STANDARD=14"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Command-line tools for programming FPGAs, microcontrollers and PROMs via JTAG";
|
|
homepage = "https://xc3sprog.sourceforge.net/";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
};
|
|
}
|