nixpkgs/pkgs/tools/misc/xprite-editor/default.nix
Benjamin Hipple eb11feaa0b treewide: change fetchCargoTarball default to opt-out
Changes the default fetcher in the Rust Platform to be the newer
`fetchCargoTarball`, and changes every application using the current default to
instead opt out.

This commit does not change any hashes or cause any rebuilds. Once integrated,
we will start deleting the opt-outs and recomputing hashes.

See #79975 for details.
2020-02-13 22:41:37 -08:00

47 lines
1.3 KiB
Nix

{ stdenv
, fetchFromGitHub
, rustPlatform
, gtk3
, AppKit
, pkg-config
, python3
}:
rustPlatform.buildRustPackage rec {
pname = "xprite-editor-unstable";
version = "2019-09-22";
src = fetchFromGitHub {
owner = "rickyhan";
repo = "xprite-editor";
rev = "7f899dff982642927024540e4bafd74e4ea5e52a";
sha256 = "1k6k8y8gg1vdmyjz27q689q9rliw0rrnzwlpjcd4vlc6swaq9ahx";
fetchSubmodules = true;
# Rename unicode file name which leads to different checksums on HFS+
# vs. other filesystems because of unicode normalization.
postFetch = ''
mv $out/config/palettes/Sweet\ Guaran*.hex $out/config/palettes/Sweet\ Guarana.hex
'';
};
buildInputs = stdenv.lib.optionals stdenv.isLinux [ gtk3 ]
++ stdenv.lib.optionals stdenv.isDarwin [ AppKit ];
nativeBuildInputs = stdenv.lib.optionals stdenv.isLinux [ pkg-config python3 ];
# Delete this on next update; see #79975 for details
legacyCargoFetcher = true;
cargoSha256 = "0cd58888l7pjmghin31ha780yhs2pz67b10jysyasdw0a88m0dwy";
cargoBuildFlags = [ "--bin" "xprite-native" ];
meta = with stdenv.lib; {
homepage = "https://github.com/rickyhan/xprite-editor";
description = "Pixel art editor";
license = licenses.gpl3;
maintainers = [ maintainers.marsam ];
platforms = platforms.linux ++ platforms.darwin;
};
}