4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
53 lines
1.5 KiB
Nix
53 lines
1.5 KiB
Nix
{ lib, stdenv, gcc-arm-embedded, binutils-arm-embedded, makeWrapper
|
|
, python, pythonPackages
|
|
|
|
# Extra options
|
|
, device ? "fsij", vid ? "234b", pid ? "0000"
|
|
|
|
# Version specific options
|
|
, version, src
|
|
, ...
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "gnuk-${version}-${device}";
|
|
|
|
inherit src;
|
|
|
|
nativeBuildInputs = [ gcc-arm-embedded binutils-arm-embedded makeWrapper ];
|
|
buildInputs = [ python ] ++ (with pythonPackages; [ pyusb colorama ]);
|
|
|
|
configurePhase = ''
|
|
cd src
|
|
patchShebangs configure
|
|
./configure --vidpid=${vid}:${pid}
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
|
|
find . -name gnuk.bin -exec cp {} $out \;
|
|
|
|
#sed -i 's,Exception as e,IOError as e,' ../tool/stlinkv2.py
|
|
sed -i ../tool/stlinkv2.py \
|
|
-e "1a import array" \
|
|
-e "s,\(data_received =\) (),\1 array.array('B'),g" \
|
|
-e "s,\(data_received\) = data_received + \(.*\),\1.extend(\2),g"
|
|
cp ../tool/stlinkv2.py $out/bin/stlinkv2
|
|
wrapProgram $out/bin/stlinkv2 --prefix PYTHONPATH : "$PYTHONPATH"
|
|
|
|
# Some useful helpers
|
|
echo "#! ${stdenv.shell} -e" | tee $out/bin/{unlock,flash}
|
|
echo "$out/bin/stlinkv2 -u \$@" >> $out/bin/unlock
|
|
echo "$out/bin/stlinkv2 -b \$@ $out/gnuk.bin" >> $out/bin/flash
|
|
chmod +x $out/bin/{unlock,flash}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "http://www.fsij.org/pages/gnuk";
|
|
description = "An implementation of USB cryptographic token for gpg";
|
|
license = licenses.gpl3;
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|