2021-01-23 04:26:19 -08:00
|
|
|
{ lib, stdenv, fetchsvn, cmake, libusb-compat-0_1, libftdi }:
|
2013-10-26 00:38:31 -07:00
|
|
|
|
|
|
|
# The xc3sprog project doesn't seem to make proper releases, they only put out
|
|
|
|
# prebuilt binary subversion snapshots on sourceforge.
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-11-04 08:23:43 -07:00
|
|
|
version = "787";
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "xc3sprog";
|
2013-10-26 00:38:31 -07:00
|
|
|
|
2019-08-13 14:52:01 -07:00
|
|
|
src = fetchsvn {
|
2013-10-26 00:38:31 -07:00
|
|
|
url = "https://svn.code.sf.net/p/xc3sprog/code/trunk";
|
2016-11-04 08:23:43 -07:00
|
|
|
sha256 = "1rfhms3i7375kdlg0sdg5k52ix3xv5llj2dr30vamyg7pk74y8rx";
|
2019-09-08 16:38:31 -07:00
|
|
|
rev = version;
|
2013-10-26 00:38:31 -07:00
|
|
|
};
|
|
|
|
|
2020-12-30 23:48:55 -08:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ libusb-compat-0_1 libftdi ];
|
2013-10-26 00:38:31 -07:00
|
|
|
|
2021-01-23 04:26:19 -08:00
|
|
|
meta = with lib; {
|
2013-10-26 00:38:31 -07:00
|
|
|
description = "Command-line tools for programming FPGAs, microcontrollers and PROMs via JTAG";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://xc3sprog.sourceforge.net/";
|
2013-10-26 00:38:31 -07:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.bjornfor ];
|
|
|
|
};
|
|
|
|
}
|