mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 14:33:22 +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.
34 lines
1.0 KiB
Nix
34 lines
1.0 KiB
Nix
{ lib, stdenv, fetchFromGitHub, autoconf, automake, pkg-config, glib, readline, makeWrapper }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "neardal";
|
|
version = "unstable-0.7-post-git-2015-09-30";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "connectivity";
|
|
repo = "neardal";
|
|
rev = "5b1c8b5c2c45c10f11cee12fbcb397f8953850d7";
|
|
sha256 = "12qwg7qiw2wfpaxfg2fjkmj5lls0g33xp6w433g8bnkvwlq4s29g";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config makeWrapper autoconf automake ];
|
|
buildInputs = [ glib readline ];
|
|
|
|
preConfigure = ''
|
|
substituteInPlace "ncl/Makefile.am" --replace "noinst_PROGRAMS" "bin_PROGRAMS"
|
|
substituteInPlace "demo/Makefile.am" --replace "noinst_PROGRAMS" "bin_PROGRAMS"
|
|
sh autogen.sh
|
|
'';
|
|
|
|
configureFlags = [ "--disable-dependency-tracking" "--disable-traces" ];
|
|
|
|
meta = with lib; {
|
|
broken = true; # 2022-11-13
|
|
description = "C APIs to exchange datas with the NFC daemon 'Neard'";
|
|
license = licenses.lgpl2;
|
|
homepage = "https://01.org/linux-nfc";
|
|
maintainers = [ ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|