9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
39 lines
647 B
Nix
39 lines
647 B
Nix
{ build-idris-package
|
|
, fetchFromGitHub
|
|
, effects
|
|
, lib
|
|
, pkg-config
|
|
, SDL2
|
|
, SDL2_gfx
|
|
}:
|
|
build-idris-package rec {
|
|
name = "sdl2";
|
|
version = "0.1.1";
|
|
|
|
idrisDeps = [ effects ];
|
|
|
|
extraBuildInputs = [
|
|
pkg-config
|
|
SDL2
|
|
SDL2_gfx
|
|
];
|
|
|
|
prePatch = "patchShebangs .";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "steshaw";
|
|
repo = "idris-sdl2";
|
|
rev = version;
|
|
sha256 = "0hqhg7l6wpkdbzrdjvrbqymmahziri07ba0hvbii7dd2p0h248fv";
|
|
};
|
|
|
|
meta = {
|
|
description = "SDL2 binding for Idris";
|
|
homepage = "https://github.com/steshaw/idris-sdl2";
|
|
maintainers = with lib.maintainers; [
|
|
brainrape
|
|
steshaw
|
|
];
|
|
};
|
|
}
|