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

libxisf: init at 0.2.3

+49
+47
pkgs/development/libraries/science/astronomy/libxisf/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitea 4 + , cmake 5 + , pkg-config 6 + , lz4 7 + , pugixml 8 + , zlib 9 + }: 10 + 11 + stdenv.mkDerivation (finalAttrs: { 12 + pname = "libxisf"; 13 + version = "0.2.3"; 14 + 15 + src = fetchFromGitea { 16 + domain = "gitea.nouspiro.space"; 17 + owner = "nou"; 18 + repo = "libXISF"; 19 + rev = "v${finalAttrs.version}"; 20 + hash = "sha256-u5EYnRO2rUV8ofLL9qfACeVvVbWXEXpkqh2Q4OOxpaQ="; 21 + }; 22 + 23 + nativeBuildInputs = [ 24 + cmake 25 + pkg-config 26 + ]; 27 + 28 + cmakeFlags = [ 29 + "-DUSE_BUNDLED_LIBS=OFF" 30 + ] ++ lib.optional stdenv.hostPlatform.isStatic "-DBUILD_SHARED_LIBS=OFF"; 31 + 32 + buildInputs = [ 33 + lz4 34 + pugixml 35 + zlib 36 + ]; 37 + 38 + doCheck = true; 39 + 40 + meta = with lib; { 41 + description = "Library to load and write XISF format from PixInsight"; 42 + homepage = "https://gitea.nouspiro.space/nou/libXISF"; 43 + license = licenses.gpl3Plus; 44 + maintainers = with maintainers; [ panicgh ]; 45 + platforms = platforms.linux; 46 + }; 47 + })
+2
pkgs/top-level/all-packages.nix
··· 22342 22342 22343 22343 libxdg_basedir = callPackage ../development/libraries/libxdg-basedir { }; 22344 22344 22345 + libxisf = callPackage ../development/libraries/science/astronomy/libxisf { }; 22346 + 22345 22347 libxkbcommon = libxkbcommon_8; 22346 22348 libxkbcommon_8 = callPackage ../development/libraries/libxkbcommon { }; 22347 22349 libxkbcommon_7 = callPackage ../development/libraries/libxkbcommon/libxkbcommon_7.nix { };