jasper: 4.0.0 -> 4.0.1

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