mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 09:04:17 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
50 lines
1.3 KiB
Nix
50 lines
1.3 KiB
Nix
{ lib
|
|
, clangStdenv
|
|
, fetchurl
|
|
, gnustep
|
|
}:
|
|
|
|
clangStdenv.mkDerivation rec {
|
|
pname = "pikopixel";
|
|
version = "1.0-b10";
|
|
|
|
src = fetchurl {
|
|
url = "https://twilightedge.com/downloads/PikoPixel.Sources.${version}.tar.gz";
|
|
sha256 = "1b27npgsan2nx1p581b9q2krx4506yyd6s34r4sf1r9x9adshm77";
|
|
};
|
|
|
|
sourceRoot = "PikoPixel.Sources.${version}/PikoPixel";
|
|
|
|
nativeBuildInputs = [
|
|
gnustep.make
|
|
gnustep.wrapGNUstepAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
gnustep.base
|
|
gnustep.gui
|
|
gnustep.back
|
|
];
|
|
|
|
# Fix the Exec and Icon paths in the .desktop file, and save the file in the
|
|
# correct place.
|
|
# postInstall gets redefined in gnustep.make's builder.sh, so we use preFixup
|
|
preFixup = ''
|
|
mkdir -p $out/share/applications
|
|
sed \
|
|
-e "s@^Exec=.*\$@Exec=$out/bin/PikoPixel %F@" \
|
|
-e "s@^Icon=.*/local@Icon=$out@" \
|
|
PikoPixel.app/Resources/PikoPixel.desktop > $out/share/applications/PikoPixel.desktop
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Application for drawing and editing pixel-art images";
|
|
mainProgram = "PikoPixel";
|
|
homepage = "https://twilightedge.com/mac/pikopixel/";
|
|
downloadPage = "https://twilightedge.com/mac/pikopixel/";
|
|
license = licenses.agpl3Plus;
|
|
maintainers = with maintainers; [ fgaz ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|