jasper: 4.0.0 -> 4.0.1

+6 -2
+6 -2
pkgs/by-name/ja/jasper/package.nix
··· 7 7 8 8 stdenv.mkDerivation (finalAttrs: { 9 9 pname = "jasper"; 10 - version = "4.0.0"; 10 + version = "4.0.1"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "jasper-software"; 14 14 repo = "jasper"; 15 15 rev = "version-${finalAttrs.version}"; 16 - hash = "sha256-v/AFx40JWdbTCa008tDz/n9cXgpAkKv4rSiGJ8yx1YQ="; 16 + hash = "sha256-IQBszOKou5Q1lgDy2LICHFmOKYJ3/djmuHGNalVHeBQ="; 17 17 }; 18 18 19 + outputs = [ "out" "dev" "doc" "lib" "man" ]; 20 + 19 21 nativeBuildInputs = [ 20 22 cmake 21 23 pkg-config 22 24 ]; 23 25 26 + # Since "build" already exists and is populated, cmake tries to use it, 27 + # throwing uncomprehensible error messages... 24 28 cmakeBuildDir = "build-directory"; 25 29 26 30 strictDeps = true;