mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
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.
26 lines
658 B
Nix
26 lines
658 B
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, asciidoc
|
|
, cryptsetup
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "luksmeta";
|
|
version = "9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "latchset";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "10nslwk7m1qwskd12c204ipa3cbad0q6fn0v084z2f7q6xxbkd2d";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config asciidoc ];
|
|
buildInputs = [ cryptsetup ];
|
|
|
|
meta = {
|
|
description = "Simple library for storing metadata in the LUKSv1 header";
|
|
homepage = "https://github.com/latchset/luksmeta/";
|
|
maintainers = with lib.maintainers; [ fpletz ];
|
|
license = lib.licenses.lgpl21Plus;
|
|
};
|
|
}
|