Remove packages that are now available upstream

This commit is contained in:
Gabriel Arazas 2022-01-19 09:54:31 +08:00
parent 0f31e8b361
commit ccf848e485
5 changed files with 0 additions and 101 deletions

View File

@ -41,13 +41,9 @@ let
guix-binary = callPackage ./guix-binary.nix { };
junction = callPackage ./junction.nix { };
libcs50 = callPackage ./libcs50.nix { };
llama = callPackage ./llama.nix { };
neo = callPackage ./neo.nix { };
pop-launcher = callPackage ./pop-launcher.nix { };
pop-launcher-plugin-duckduckgo-bangs =
callPackage ./pop-launcher-plugin-duckduckgo-bangs.nix { };
photon-rss = callPackage ./photon-rss.nix { };
ratt = callPackage ./ratt.nix { };
rnote = callPackage ./rnote.nix { };
tic-80 = callPackage ./tic-80 { };
sioyek = libsForQt5.callPackage ./sioyek.nix { };

View File

@ -1,21 +0,0 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "llama";
version = "1.0.2";
src = fetchFromGitHub {
owner = "antonmedv";
repo = pname;
rev = "v${version}";
sha256 = "sha256-6Xuwl4IpzbVfJ2MhHeImPFWxL/Y6rhnBExlh64PeGdk=";
};
vendorSha256 = "sha256-J/2R3XhGNmejc3jstJ0NWmJm/a1Re6UK6AuQb5gzh4E=";
meta = with lib; {
description = "Terminal file manager";
homepage = "https://github.com/antonmedv/llama";
license = licenses.mit;
};
}

View File

@ -1,22 +0,0 @@
{ stdenv, lib, fetchFromGitHub, ncurses, autoreconfHook, libtool
, autoconf-archive }:
stdenv.mkDerivation rec {
pname = "neo";
version = "0.6";
src = fetchFromGitHub {
owner = "st3w";
repo = pname;
rev = "v${version}";
sha256 = "sha256-0ELYLV7sB/HhmTf9cN+6ejyhZq/pjdHgwi9V53eT61M=";
};
buildInputs = [ autoreconfHook autoconf-archive ncurses ];
meta = with lib; {
description = "Simulates the digital rain from 'The Matrix'";
homepage = "https://github.com/st3w/neo";
license = licenses.gpl3;
};
}

View File

@ -1,27 +0,0 @@
{ stdenv, lib, fetchFromSourcehut, buildGoModule, xorg }:
buildGoModule rec {
pname = "photon-rss";
version = "2022-01-04-57687766";
src = fetchFromSourcehut {
owner = "~ghost08";
repo = "photon";
rev = "57687766a71add4751f68052666fed638fc45891";
sha256 = "sha256-Q4WD1s9kvt5khvw9Zg7A688IECponIQ3HTAMoQpeQvY=";
};
buildInputs = [ xorg.libX11 ];
vendorSha256 = "sha256-sASlZwJJzjMmzQRbCZfuuE7y9huO2dRYbYuzteIdLpI=";
postInstall = ''
# Move the plugins somewhere.
install -Dm644 plugins/* -t $out/share/photon
'';
meta = with lib; {
homepage = "https://git.sr.ht/~ghost08/photon";
description = "RSS reader in the terminal with sixel support";
license = licenses.gpl3;
};
}

View File

@ -1,27 +0,0 @@
{ stdenv, lib, fetchFromSourcehut, buildGoModule }:
buildGoModule rec {
pname = "ratt";
version = "2022-01-04-a9c98c53";
src = fetchFromSourcehut {
owner = "~ghost08";
repo = pname;
rev = "a9c98c535e82f5110e7e47c81ffd9c93dde63fb6";
sha256 = "sha256-7Bu/Hr+HiIswURhvC3fItPQZN3Ca9WwqkZ4rGdaOXdQ=";
};
subPackages = [ "cmd/ratt" ];
vendorSha256 = "sha256-JTlrtI3IS3hyQeHlS1ED7TObNon3bkNp6+CSVdbGD0A=";
postInstall = ''
# Move the built-in packaged filters into the appropriate folder.
install -Dm644 confs/* -t $out/share/${pname}
'';
meta = with lib; {
homepage = "https://git.sr.ht/~ghost08/ratt";
description = "Make an RSS feed on all the things";
license = licenses.mit;
};
}