Commit c260267d authored by Stanisław Pitucha's avatar Stanisław Pitucha
Browse files

re-derq: init at 1.0.1

parent 80e2deac
Loading
Loading
Loading
Loading
+28 −0
Original line number Diff line number Diff line
{
  lib,
  fetchFromCodeberg,
  rustPlatform,
}:
rustPlatform.buildRustPackage (finalAttrs: {
  pname = "re-derq";
  version = "1.0.1";
  __structuredAttrs = true;

  src = fetchFromCodeberg {
    owner = "viraptor";
    repo = "re-derq";
    tag = finalAttrs.version;
    hash = "sha256-dnkxHEuFCn/QVMdTNhWtv5fh54Gald0YQCO0/LoQtCI=";
  };

  cargoHash = "sha256-KnH8jJb2rLn2LAgno+QbBg5K5NQErlvGDbhxEthwryM=";

  meta = {
    mainProgram = "derq";
    description = "Open reimplementation of Apple's derq";
    homepage = "https://codeberg.org/viraptor/re-derq";
    license = with lib.licenses; [ mit ];
    maintainers = with lib.maintainers; [ viraptor ];
    platforms = lib.platforms.unix;
  };
})