diff options
author | EuAndreh <eu@euandre.org> | 2022-01-19 09:29:58 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-01-19 09:30:30 -0300 |
commit | 7882c1d616f869d6a3cab33dac696032b3f3a3ef (patch) | |
tree | 359c71eec9cb02e3db44c663883e9ce5cf0660e4 /default.nix | |
parent | Update all package definitions (diff) | |
download | package-repository-7882c1d616f869d6a3cab33dac696032b3f3a3ef.tar.gz package-repository-7882c1d616f869d6a3cab33dac696032b3f3a3ef.tar.xz |
paku.json: Remove currently stagnant packages
While package-repository and scripts/paku is itself WIP.
Diffstat (limited to '')
-rw-r--r-- | default.nix | 106 |
1 files changed, 4 insertions, 102 deletions
diff --git a/default.nix b/default.nix index be8b585..1fe93ec 100644 --- a/default.nix +++ b/default.nix @@ -25,30 +25,6 @@ self: super: { platforms = platforms.unix; }; }; - remembering-latest = pkgs.stdenv.mkDerivation rec { - name = "remembering"; - version = "5476f9fab45efd3996d50d8b9a1ff4e825d93f44"; - - src = fetchTarball { - url = - "https://git.euandreh.xyz/${name}/snapshot/${name}-${version}.tar.gz"; - sha256 = "1lvljc6y9q73qs2ykwv147w795kmy1m9dm9dfj5p42n6i9vqa7vy"; - }; - - makeFlags = [ "CC=cc" "PREFIX=$(out)" ]; - - doCheck = true; - - meta = with pkgs.lib; { - description = readFile "${src}/description"; - longDescription = readFile "${src}/long-description"; - homepage = "https://${name}.euandreh.xyz"; - changelog = "https://${name}.euandreh.xyz/CHANGELOG.html"; - downloadPage = "https://${name}.euandreh.xyz/#releases"; - license = licenses.agpl3; - platforms = platforms.unix; - }; - }; remembering = pkgs.stdenv.mkDerivation rec { name = "remembering"; version = "0.2.1"; @@ -75,12 +51,12 @@ self: super: { }; git-permalink-latest = pkgs.stdenv.mkDerivation rec { name = "git-permalink"; - version = "1fe660600ad142279f34112be15dad418fe6a785"; + version = "7f0c97b64bcccbdcd1667f2c2ca8f1face9ca027"; src = fetchTarball { url = "https://git.euandreh.xyz/${name}/snapshot/${name}-${version}.tar.gz"; - sha256 = "0lssv7f6ah02rj1pnwb5vrc4s0pp5v9xh8na2bmyqja41qy9w8d7"; + sha256 = "1s9gbq0k5wpn0rjp1a9kzjh6sy7bbbqghykb7k4nms3wl0prip67"; }; makeFlags = [ "CC=cc" "PREFIX=$(out)" ]; @@ -99,90 +75,16 @@ self: super: { }; git-permalink = pkgs.stdenv.mkDerivation rec { name = "git-permalink"; - version = "0.2.2"; - - src = fetchTarball { - url = - "https://git.euandreh.xyz/${name}/snapshot/${name}-${version}.tar.gz"; - sha256 = "05vcfsdw1zlpfr8g8hsr1y9drbbyfda74rqi3skp8siwdikaklln"; - }; - - makeFlags = [ "CC=cc" "PREFIX=$(out)" ]; - - doCheck = true; - - meta = with pkgs.lib; { - description = readFile "${src}/description"; - longDescription = readFile "${src}/long-description"; - homepage = "https://${name}.euandreh.xyz"; - changelog = "https://${name}.euandreh.xyz/CHANGELOG.html"; - downloadPage = "https://${name}.euandreh.xyz/#releases"; - license = licenses.agpl3; - platforms = platforms.unix; - }; - }; - autoqemu-latest = pkgs.stdenv.mkDerivation rec { - name = "autoqemu"; - version = "e676c0baedc09f34fbd07877dc3ab47e9427a221"; - - src = fetchTarball { - url = - "https://git.euandreh.xyz/${name}/snapshot/${name}-${version}.tar.gz"; - sha256 = "0iidxpdn855h12ybnxwizbbsmgz6123xpim86gc722w3f2yb8ck7"; - }; - - makeFlags = [ "CC=cc" "PREFIX=$(out)" ]; - - doCheck = true; - - meta = with pkgs.lib; { - description = readFile "${src}/description"; - longDescription = readFile "${src}/long-description"; - homepage = "https://${name}.euandreh.xyz"; - changelog = "https://${name}.euandreh.xyz/CHANGELOG.html"; - downloadPage = "https://${name}.euandreh.xyz/#releases"; - license = licenses.agpl3; - platforms = platforms.unix; - }; - }; - fallible-latest = pkgs.stdenv.mkDerivation rec { - name = "fallible"; - version = "76c74b3cf29bf9e7c62b328c2bcdcff534e5b663"; - - src = fetchTarball { - url = - "https://git.euandreh.xyz/${name}/snapshot/${name}-${version}.tar.gz"; - sha256 = "0jzc2m0m3a684zz82mxw7lgykczkkvm9gi87nar6fqmci7zwyxyb"; - }; - - makeFlags = [ "CC=cc" "PREFIX=$(out)" ]; - - checkInputs = with pkgs; [ valgrind ]; - doCheck = true; - - meta = with pkgs.lib; { - description = readFile "${src}/description"; - longDescription = readFile "${src}/long-description"; - homepage = "https://${name}.euandreh.xyz"; - changelog = "https://${name}.euandreh.xyz/CHANGELOG.html"; - downloadPage = "https://${name}.euandreh.xyz/#releases"; - license = licenses.agpl3; - platforms = platforms.unix; - }; - }; - fallible = pkgs.stdenv.mkDerivation rec { - name = "fallible"; - version = "0.3.0"; + version = "0.3.1"; src = fetchTarball { url = "https://git.euandreh.xyz/${name}/snapshot/${name}-${version}.tar.gz"; - sha256 = "0nsmy3bvim9pf78c5dcmbp81wks87wma62srgc7i2yc9phvqpjfh"; + sha256 = "0agymhi7c75mn0glr3fg94grn1mmp2mk8ph2cwr0zf8pzyx0imcn"; }; makeFlags = [ "CC=cc" "PREFIX=$(out)" ]; - checkInputs = with pkgs; [ valgrind ]; doCheck = true; meta = with pkgs.lib; { |