linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / luksmeta / default.nix
blobafefcfed82c7f53b41bcea70cfa5296d7a403c39
1 { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, asciidoc
2 , cryptsetup
3 }:
5 stdenv.mkDerivation rec {
6   pname = "luksmeta";
7   version = "9";
9   src = fetchFromGitHub {
10     owner = "latchset";
11     repo = pname;
12     rev = "v${version}";
13     sha256 = "10nslwk7m1qwskd12c204ipa3cbad0q6fn0v084z2f7q6xxbkd2d";
14   };
16   nativeBuildInputs = [ autoreconfHook pkg-config asciidoc ];
17   buildInputs = [ cryptsetup ];
19   meta = {
20     description = "Simple library for storing metadata in the LUKSv1 header";
21     homepage = "https://github.com/latchset/luksmeta/";
22     maintainers = with lib.maintainers; [ fpletz ];
23     license = lib.licenses.lgpl21Plus;
24   };