Unverified Commit 783bac01 authored by Masum Reza's avatar Masum Reza Committed by GitHub
Browse files

hyprutils: 0.2.3 -> 0.2.5; hyprlang: let it build on other platforms (#355436)

parents fc3fa30f e6353955
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -27,11 +27,11 @@ stdenv.mkDerivation (finalAttrs: {

  doCheck = true;

  meta = with lib; {
  meta = {
    homepage = "https://github.com/hyprwm/hyprlang";
    description = "Official implementation library for the hypr config language";
    license = licenses.lgpl3Only;
    platforms = platforms.linux;
    maintainers = with maintainers; [ iogamaster fufexan ];
    license = lib.licenses.lgpl3Only;
    platforms = lib.platforms.all;
    maintainers = with lib.maintainers; [ iogamaster fufexan ];
  };
})
+3 −3
Original line number Diff line number Diff line
@@ -10,13 +10,13 @@

stdenv.mkDerivation (finalAttrs: {
  pname = "hyprutils";
  version = "0.2.3";
  version = "0.2.5";

  src = fetchFromGitHub {
    owner = "hyprwm";
    repo = "hyprutils";
    rev = "refs/tags/v${finalAttrs.version}";
    hash = "sha256-9gsVvcxW9bM3HMcnHHK+vYHOzXb1ODFqN+sJ4zIRsAU=";
    hash = "sha256-SO/9G2h5nXCnMahTP9m46eqsu0Lr8A60Fhc0ABkx0Y0=";
  };

  nativeBuildInputs = [
@@ -38,7 +38,7 @@ stdenv.mkDerivation (finalAttrs: {
    homepage = "https://github.com/hyprwm/hyprutils";
    description = "Small C++ library for utilities used across the Hypr* ecosystem";
    license = lib.licenses.bsd3;
    platforms = lib.platforms.linux;
    platforms = lib.platforms.linux ++ lib.platforms.freebsd;
    maintainers =  with lib.maintainers; [
      donovanglover
      johnrtitor