about summary refs log tree commit diff
path: root/pkgs/applications/graphics/unigine-valley/default.nix
AgeCommit message (Collapse)AuthorFilesLines
2022-09-22unigine-valley: fix source url and hash; add mainProgramsuperherointj1-2/+3
2022-06-23treewide/applications: add `sourceType` `binaryNativeCode` for many packagesRobert Scott1-0/+1
2022-04-19unigine-valley: add desktop icon and change libGL to libglvndbarinov2741-99/+120
2022-03-19treewide/makeWrapper: replace `--run cd` with `--chdir`Naïm Favier1-1/+1
Lay the groundwork for switching to binary wrappers by reducing uses of `--run` (which is not supported by `makeBinaryWrapper`).
2021-02-19treewide: makeWrapper buildInputs to nativeBuildInputsBen Siraphob1-1/+1
2021-01-16treewide: stdenv.lib -> libBen Siraphob1-4/+4
2020-10-02treewide: fix redirected urls (run 3)Patrick Hilhorst1-1/+1
Related: - 9fc5e7e473874762fdb1b49d17dcf703d48352c3 - 593e11fd944ce961ecf5425c3540df09e4f52265 - 508ae42a0f64c350036d722b84c2e2905bbc5418 Since the last time I ran this script, the Repology API changed, so I had to adapt the script used in the previous PR. The new API should be more robust, so overall this is a positive (no more grepping the error messages for our relevant data but just a nice json structure). Here's the new script I used: ```sh curl https://repology.org/api/v1/repository/nix_unstable/problems \ | jq -r '.[] | select(.type == "homepage_permanent_https_redirect") | .data | "s@\(.url)@\(.target)@"' \ | sort | uniq | tee script.sed find -name '*.nix' | xargs -P4 -- sed -f script.sed -i ``` I will also add this script to `maintainers/scripts`.
2020-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly1-1/+1
2019-08-17treewide: name -> pnamevolth1-1/+2
2019-04-19unigine-valley: fixvolth1-0/+2
Reflect changes introduced in #37369 It failed to fild libGL.so
2018-08-30reewide: Purge all uses `stdenv.system` and top-level `system`John Ericson1-3/+3
It is deprecated and will be removed after 18.09.
2017-12-12treewide platform checks: `abort` -> `throw`Vladimír Čunát1-1/+1
They aren't meant to be critical (uncatchable) errors. Tested with nix-env + checkMeta: [ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" ]
2017-08-01pkgs: refactor needless quoting of homepage meta attribute (#27809)Silvan Mosberger1-1/+1
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
2017-06-05Fix hooks not being called when overriding phases in various packagesKier Davis1-0/+12
It's necessary to do this in order to fix ckb's compilation, now that fixupPhase rejects derivation results containing references to the temporary build directory. It seems like good practice so I've added it to the other packages that I maintain.
2016-12-16unigine-valley: clean upKier Davis1-10/+5
2016-12-16unigine-valley: exclude non-ELF files from stripping during fix-upKier Davis1-0/+2
2016-12-16unigine-valley: install files to a more idiomatic locationKier Davis1-2/+2
Previously, the entire installation was copied to $out/opt/unigine/valley. Using $out/lib instead of $out/opt would be more consistent with other Nix packages.
2016-12-16unigine-valley: 1.0-1 -> 1.0 (remove unnecessary release version)Kier Davis1-2/+1
The upstream version is "1.0", so that's what the version of the Nix package should be too. When I packaged this I wasn't aware that a Nix package could update without its version number increasing, so I added an extra "release version" (like Arch Linux packages). Of course, this isn't necessary.
2016-10-24unigine-valley: init at 1.0-1Kier Davis1-0/+104
Closes https://github.com/NixOS/nixpkgs/pull/19813