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.
26 lines
762 B
Nix
26 lines
762 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, SDL, SDL2, ncurses, docbook_xsl, git }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "sdl-jstest";
|
|
version = "2018-06-15";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Grumbel";
|
|
repo = "sdl-jstest";
|
|
rev = "aafbdb1ed3e687583037ba55ae88b1210d6ce98b";
|
|
hash = "sha256-Mw+ENOVZ0O8WercdDNLAAkNMPZ2NyxSa+nMtgNmXjFw=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
buildInputs = [ SDL SDL2 ncurses ];
|
|
nativeBuildInputs = [ cmake pkg-config docbook_xsl git ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/Grumbel/sdl-jstest";
|
|
description = "Simple SDL joystick test application for the console";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
};
|
|
}
|