mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +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.
36 lines
959 B
Nix
36 lines
959 B
Nix
{ lib, stdenv, fetchFromGitHub, libuuid }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "lib" + pname + "-" + version;
|
|
pname = "crossguid";
|
|
version = "2016-02-21";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "graeme-hill";
|
|
repo = pname;
|
|
rev = "8f399e8bd4252be9952f3dfa8199924cc8487ca4";
|
|
sha256 = "1i29y207qqddvaxbn39pk2fbh3gx8zvdprfp35wasj9rw2wjk3s9";
|
|
};
|
|
|
|
buildInputs = [ libuuid ];
|
|
|
|
buildPhase = ''
|
|
$CXX -c guid.cpp -o guid.o $CXXFLAGS -std=c++11 -DGUID_LIBUUID
|
|
$AR rvs libcrossguid.a guid.o
|
|
'';
|
|
installPhase = ''
|
|
mkdir -p $out/{lib,include}
|
|
install -D -m644 libcrossguid.a "$out/lib/libcrossguid.a"
|
|
install -D -m644 guid.h "$out/include/guid.h"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Lightweight cross platform C++ GUID/UUID library";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ edwtjo ];
|
|
homepage = "https://github.com/graeme-hill/crossguid";
|
|
platforms = with platforms; linux;
|
|
};
|
|
|
|
}
|