!CXcIPzDZqFYqqXTaXa:matrix.org

nix-init

58 Members
https://github.com/nix-community/nix-init18 Servers

Load older messages


SenderMessageTime
13 Jun 2023
@figsoda:matrix.orgfigsoda
In reply to @raitobezarius:matrix.org
figsoda: is there something to do when we hit ratelimits? :D
you can give it a github token https://github.com/nix-community/nix-init#configuration
23:53:05
@raitobezarius:matrix.orgraitobezariusnice23:53:15
15 Jun 2023
@andrewm:element.ioAndrew Morgan (anoa) {he/him} [off; back Jan 5] changed their display name from Andrew Morgan (anoa) [away; back 15th in GMT-7] to Andrew Morgan (anoa) [GMT-7].19:13:16
@andrewm:element.ioAndrew Morgan (anoa) {he/him} [off; back Jan 5] changed their display name from Andrew Morgan (anoa) [GMT-7] to Andrew Morgan (anoa) [GMT-6].19:19:18
18 Jun 2023
@kranzes:matrix.org@kranzes:matrix.org Is it possible to add support to nix-init to generate an expression for a local git checkout 08:40:32
@figsoda:matrix.orgfigsoda
In reply to @kranzes:matrix.org
Is it possible to add support to nix-init to generate an expression for a local git checkout
yes, feel free to open an issue
14:40:16
@figsoda:matrix.orgfigsoda though it will probably require a flag or file://, since I do plan on supporting urls without schemes (something like github.com/nix-community/nix-init 14:41:08
@figsoda:matrix.orgfigsoda * though it will probably require a flag or file://, since I do plan on supporting urls without schemes (something like github.com/nix-community/nix-init) 14:41:16
@kranzes:matrix.org@kranzes:matrix.orgI thought of having it so if the user inputs a local directory instead of a url14:42:27
@kranzes:matrix.org@kranzes:matrix.orgit will assume it's a git checkout14:42:32
@kranzes:matrix.org@kranzes:matrix.organd can use some metadata from git14:42:45
@figsoda:matrix.orgfigsodaah that would take a bit more work14:43:22
@kranzes:matrix.org@kranzes:matrix.orgYeah i figured14:43:28
@kranzes:matrix.org@kranzes:matrix.orghavent thought much about this tbh14:43:35
@kranzes:matrix.org@kranzes:matrix.orgjust a shower thought i had14:43:38
@raitobezarius:matrix.orgraitobezariusI'd advise against doing speculations14:47:10
@raitobezarius:matrix.orgraitobezarius and use rather file+(git|hg|...):// 14:47:16
19 Jun 2023
@charlycoste:matrix.org@charlycoste:matrix.org left the room.11:24:50
@andrewm:element.ioAndrew Morgan (anoa) {he/him} [off; back Jan 5] changed their display name from Andrew Morgan (anoa) [GMT-6] to Andrew Morgan (anoa) [away; back 26th].23:48:49
21 Jun 2023
@figsoda:matrix.orgfigsodaI think I will cut a release soon00:57:36
@figsoda:matrix.orgfigsodamostly for cargo 0.71 sparse by default and https://github.com/nix-community/nix-init/commit/f998c8718044a34af91db6ce1e815490cf66577b00:58:08
22 Jun 2023
@archive:matrix.org@archive:matrix.org set their display name to archive.matrix.org/faq.05:27:40
23 Jun 2023
@timokoesters:fachschaften.orgTimo ⚡️ changed their profile picture.18:57:31
26 Jun 2023
@andrewm:element.ioAndrew Morgan (anoa) {he/him} [off; back Jan 5] changed their display name from Andrew Morgan (anoa) [away; back 26th] to Andrew Morgan (anoa) [GMT-6].18:05:46
1 Jul 2023
@figsoda:matrix.orgfigsodajust added dependency inference support for go20:57:38
@figsoda:matrix.orgfigsodadoesn't do a whole lot at the moment, but works20:58:06
3 Jul 2023
@andrewm:element.ioAndrew Morgan (anoa) {he/him} [off; back Jan 5] changed their display name from Andrew Morgan (anoa) [GMT-6] to Andrew Morgan (anoa).05:04:17
@andrewm:element.ioAndrew Morgan (anoa) {he/him} [off; back Jan 5] changed their profile picture.08:09:42
6 Jul 2023
@figsoda:matrix.orgfigsodav0.2.4 is here https://discourse.nixos.org/t/25035/1722:13:52
7 Jul 2023
@kranzes:matrix.org@kranzes:matrix.org

figsoda: I just tried using the Go dependency inference feature on unpackerr and it created this expression:

{ lib
, buildGoModule
, fetchFromGitHub
, pkg-config
, stdenv
, darwin
, libayatana-appindicator
, xorg
}:

buildGoModule rec {
  pname = "unpackerr";
  version = "0.11.2";

  src = fetchFromGitHub {
    owner = "Unpackerr";
    repo = "unpackerr";
    rev = "v${version}";
    hash = "sha256-Jxg1gaMTJ/BbL8TQfPcyt1hYnT/LcL4j+m+jSeh5QyA=";
  };

  vendorHash = "sha256-yXFIBWOF72nXmT8+OSvF1aKBhCMBloLmGTfvNbV9ir4=";

  nativeBuildInputs = [
    pkg-config
  ];

  buildInputs = lib.optionals stdenv.isDarwin [
    darwin.apple_sdk.frameworks.Cocoa
    darwin.apple_sdk.frameworks.Kernel
    darwin.apple_sdk.frameworks.WebKit
  ] ++ lib.optionals stdenv.isLinux [
    libayatana-appindicator
    xorg.libX11
    xorg.libXcursor
    xorg.libXi
    xorg.libXinerama
    xorg.libXrandr
  ];

  ldflags = [ "-s" "-w" ];

  meta = with lib; {
    description = "Extracts downloads for Radarr, Sonarr, Lidarr, Readarr, and/or a Watch folder - Deletes extracted files after import";
    homepage = "https://github.com/Unpackerr/unpackerr";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
  };
}
22:04:31

Show newer messages


Back to Room ListRoom Version: 10