commit
8e74f20c7b
2 changed files with 1061 additions and 0 deletions
1028
pkgs/by-name/pd/pdfrip/Cargo.lock
generated
Normal file
1028
pkgs/by-name/pd/pdfrip/Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
33
pkgs/by-name/pd/pdfrip/package.nix
Normal file
33
pkgs/by-name/pd/pdfrip/package.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{ lib
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "pdfrip";
|
||||
version = "2.0.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mufeedvh";
|
||||
repo = "pdfrip";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-9KDWd71MJ2W9Xp3uqp0iZMmkBwIay+L4gnPUt7hylS0=";
|
||||
};
|
||||
|
||||
cargoLock = {
|
||||
lockFile = ./Cargo.lock;
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
ln -s ${./Cargo.lock} Cargo.lock
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "PDF password cracking utility";
|
||||
homepage = "https://github.com/mufeedvh/pdfrip";
|
||||
changelog = "https://github.com/mufeedvh/pdfrip/releases/tag/v${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
mainProgram = "pdfrip";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue