Commit 55f4e5b6 authored by Anderson Torres's avatar Anderson Torres
Browse files

jasper: 4.0.0 -> 4.0.1

parent 3a314ad9
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -7,20 +7,24 @@

stdenv.mkDerivation (finalAttrs: {
  pname = "jasper";
  version = "4.0.0";
  version = "4.0.1";

  src = fetchFromGitHub {
    owner = "jasper-software";
    repo = "jasper";
    rev = "version-${finalAttrs.version}";
    hash = "sha256-v/AFx40JWdbTCa008tDz/n9cXgpAkKv4rSiGJ8yx1YQ=";
    hash = "sha256-IQBszOKou5Q1lgDy2LICHFmOKYJ3/djmuHGNalVHeBQ=";
  };

  outputs = [ "out" "dev" "doc" "lib" "man" ];

  nativeBuildInputs = [
    cmake
    pkg-config
  ];

  # Since "build" already exists and is populated, cmake tries to use it,
  # throwing uncomprehensible error messages...
  cmakeBuildDir = "build-directory";

  strictDeps = true;