mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
29 lines
629 B
Nix
29 lines
629 B
Nix
{ stdenv, fetchFromGitHub
|
|
, cmake
|
|
, polarssl , fuse
|
|
}:
|
|
with stdenv.lib;
|
|
let
|
|
version = "0.7.1";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "dislocker-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aorimn";
|
|
repo = "dislocker";
|
|
rev = "v${version}";
|
|
sha256 = "1crh2sg5x1kgqmdrl1nmrqwxjykxa4zwnbggcpdn97mj2gvdw7sb";
|
|
};
|
|
|
|
buildInputs = [ cmake fuse polarssl ];
|
|
|
|
meta = {
|
|
description = "Read BitLocker encrypted partitions in Linux";
|
|
homepage = https://github.com/aorimn/dislocker;
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ elitak ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|