Unverified Commit ddeaf324 authored by Francesco Gazzetta's avatar Francesco Gazzetta Committed by GitHub
Browse files

drawpile: 2.2.2 -> 2.3.0 (#463680)

parents 55393296 c064c37c
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
@@ -64,18 +64,18 @@ let
in
stdenv.mkDerivation rec {
  pname = "drawpile";
  version = "2.2.2";
  version = "2.3.0";

  src = fetchFromGitHub {
    owner = "drawpile";
    repo = "drawpile";
    rev = version;
    sha256 = "sha256-xcutcSpbFt+pb7QP1E/RG6iNnZwpfhIZTxr+1usLKHc=";
    sha256 = "sha256-0paLKxAEvlbExq426xTekBt+Dkphx7Wg/AtpYN3f/4w=";
  };

  cargoDeps = rustPlatform.fetchCargoVendor {
    inherit src;
    hash = "sha256-VUX6J7TfxWpa07HPFZ8JzpltIwJUYAl5TABIpBmGYYo=";
    hash = "sha256-u9fRbxKeQSou9Umw4EaqzzzDiN4zhyfx9sWnlZpfpxU=";
  };

  nativeBuildInputs = [
@@ -111,7 +111,10 @@ stdenv.mkDerivation rec {
    homepage = "https://drawpile.net/";
    downloadPage = "https://drawpile.net/download/";
    license = lib.licenses.gpl3Plus;
    maintainers = with lib.maintainers; [ fgaz ];
    maintainers = with lib.maintainers; [
      fgaz
      qubic
    ];
    platforms = lib.platforms.unix;
    broken = stdenv.hostPlatform.isDarwin;
  }