nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

libversion: 3.0.2 -> 3.0.3

fixes build system, so no need for cmakeFlags

+2 -11
+2 -11
pkgs/development/libraries/libversion/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "libversion"; 5 - version = "3.0.2"; 5 + version = "3.0.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "repology"; 9 9 repo = "libversion"; 10 10 rev = version; 11 - hash = "sha256-P/ykRy+LgcfWls4Zw8noel/K9mh/PnKy3smoQtuSi00="; 11 + hash = "sha256-REmXD0NFd7Af01EU/f2IGoTKiju6ErTI7WUinvrAzaA="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ cmake ]; 15 - 16 - cmakeFlags = [ 17 - # https://github.com/NixOS/nixpkgs/issues/144170 18 - # the cmake package does not handle absolute CMAKE_INSTALL_INCLUDEDIR correctly 19 - # (setting it to an absolute path causes include files to go to $out/$out/include, 20 - # because the absolute path is interpreted with root at $out). 21 - "-DCMAKE_INSTALL_INCLUDEDIR=include" 22 - "-DCMAKE_INSTALL_LIBDIR=lib" 23 - ]; 24 15 25 16 checkTarget = "test"; 26 17 doCheck = true;