delete unmaintained packages

This commit is contained in:
Julien Malka 2024-03-30 20:58:16 +01:00
parent 44b3f14d48
commit 56b805c702
Signed by: Luj
GPG key ID: 6FC74C847011FD83
2 changed files with 0 additions and 51 deletions

View file

@ -1,26 +0,0 @@
{ stdenv, lib, fetchFromGitHub }:
stdenv.mkDerivation rec {
version = "1.3.6";
pname = "htpdate";
src = fetchFromGitHub {
owner = "twekkel";
repo = pname;
rev = "v${version}";
sha256 = "sha256-0NLlBNYTJ+hmQLH/UYwIOIbq3G1sDo/A03xFHsXdzig=";
};
makeFlags = [
"prefix=$(out)"
];
meta = with lib; {
description = "Utility to fetch time and set the system clock over HTTP";
homepage = "https://github.com/twekkel/htpdate";
platforms = platforms.linux;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ julienmalka ];
};
}

View file

@ -1,25 +0,0 @@
{ pkgs, ... }:
with pkgs;
stdenv.mkDerivation rec {
pname = "tinystatus";
version = "1.0.0";
src = fetchFromGitHub{
owner = "bderenzo";
repo = "tinystatus";
rev="fc128adf240261ac99ea3e3be8d65a92eda52a73";
sha256= "FvQwibm6F10l9/U3RnNTGu+C2JjHOwbv62VxXAfI7/s=";
};
postPatch = ''
patchShebangs .
'';
installPhase = ''
mkdir -p $out/bin/
mv tinystatus $out/bin/
'';
}