Merge pull request #148240 from hjones2199/adopt-multi
adopt multiple packages
This commit is contained in:
commit
ac9ad0a998
3 changed files with 3 additions and 1 deletions
|
@ -31,6 +31,7 @@ stdenv.mkDerivation rec {
|
||||||
description = "Real-time 3D simulation of space";
|
description = "Real-time 3D simulation of space";
|
||||||
changelog = "https://github.com/CelestiaProject/Celestia/releases/tag/${version}";
|
changelog = "https://github.com/CelestiaProject/Celestia/releases/tag/${version}";
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
|
maintainers = with maintainers; [ hjones2199 ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -137,6 +137,7 @@ stdenv.mkDerivation {
|
||||||
badPlatforms = optional (versionOlder version "1.59") "aarch64-linux"
|
badPlatforms = optional (versionOlder version "1.59") "aarch64-linux"
|
||||||
++ optional ((versionOlder version "1.57") || version == "1.58") "x86_64-darwin"
|
++ optional ((versionOlder version "1.57") || version == "1.58") "x86_64-darwin"
|
||||||
++ optionals (versionOlder version "1.73") lib.platforms.riscv;
|
++ optionals (versionOlder version "1.73") lib.platforms.riscv;
|
||||||
|
maintainers = with maintainers; [ hjones2199 ];
|
||||||
};
|
};
|
||||||
|
|
||||||
preConfigure = optionalString useMpi ''
|
preConfigure = optionalString useMpi ''
|
||||||
|
|
|
@ -36,7 +36,7 @@ stdenv.mkDerivation rec {
|
||||||
'';
|
'';
|
||||||
changelog = "https://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/docs/changes.txt";
|
changelog = "https://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/docs/changes.txt";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = [ maintainers.xbreak ];
|
maintainers = with maintainers; [ xbreak hjones2199 ];
|
||||||
platforms = with platforms; linux ++ darwin;
|
platforms = with platforms; linux ++ darwin;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue