Delete unused simpleygggen, pile

This commit is contained in:
Sandro - 2023-02-23 00:11:56 +01:00
parent dc3f4d9b5f
commit 745474a624
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
3 changed files with 0 additions and 53 deletions

View File

@ -76,16 +76,12 @@ with final; {
oxigraph = callPackage ./oxigraph.nix { };
pile = callPackage ./pile.nix { };
pi-sensors = callPackage ./pi-sensors { };
plume = callPackage ./plume { };
readsb = callPackage ./readsb.nix { };
simpleygggen-cpp = callPackage ./simpleygggen.nix { };
telme10 = callPackage ./telme10.nix { };
tracer-game =

View File

@ -1,28 +0,0 @@
{ fetchgit, rustPlatform }:
let
pile = fetchgit {
url = "https://github.com/astro/pile.git";
sha256 = "sha256-z4xNUGmP35ZBZUpgozQHANZniADfmwEoclnEwNlvAC4=";
};
in
rustPlatform.buildRustPackage {
name = "ledball";
version = "0.0.0";
src = "${pile}/ledball";
cargoSha256 = "0zyfbf3gph8gqab07fmm5a7x5slapsqn8ck6isp53fsa7ljnagjy";
cargoBuildFlags = [ "--examples" ];
postInstall = ''
mkdir -p $out/bin
for f in target/*/release/examples/*; do
if [ -f $f ] && [ -x $f ]; then
cp $f $out/bin/
fi
done
'';
}

View File

@ -1,21 +0,0 @@
{ lib, stdenv, fetchurl, cmake, libsodium, }:
stdenv.mkDerivation rec {
pname = "SimpleYggGen-CPP";
version = "5.1";
src = fetchurl {
url = "https://notabug.org/acetone/${pname}/archive/${version}.tar.gz";
hash = "sha256-z5Wtmw2vq3qRjNSOJ0xlxdmB5g2Oa+UQn1Awt7+R/XY=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ libsodium ];
installPhase = ''
install -D src/sygcpp $out/bin/$pname
'';
meta.maintainers = [ lib.maintainers.ehmry ];
}