mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
cardpeek: init at 0.8.4
This commit is contained in:
parent
8dd2fb2ffb
commit
74dcd2b49c
@ -1250,6 +1250,11 @@
|
|||||||
github = "edef1c";
|
github = "edef1c";
|
||||||
name = "edef";
|
name = "edef";
|
||||||
};
|
};
|
||||||
|
embr = {
|
||||||
|
email = "hi@liclac.eu";
|
||||||
|
github = "liclac";
|
||||||
|
name = "embr";
|
||||||
|
};
|
||||||
ederoyd46 = {
|
ederoyd46 = {
|
||||||
email = "matt@ederoyd.co.uk";
|
email = "matt@ederoyd.co.uk";
|
||||||
github = "ederoyd46";
|
github = "ederoyd46";
|
||||||
|
28
pkgs/applications/misc/cardpeek/default.nix
Normal file
28
pkgs/applications/misc/cardpeek/default.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ stdenv, lib, fetchFromGitHub, pkgconfig, autoreconfHook,
|
||||||
|
glib, gtk3, pcsclite, lua5_2, curl, readline }:
|
||||||
|
let
|
||||||
|
version = "0.8.4";
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "cardpeek-${version}";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "L1L1";
|
||||||
|
repo = "cardpeek";
|
||||||
|
rev = "cardpeek-${version}";
|
||||||
|
sha256 = "1ighpl7nvcvwnsd6r5h5n9p95kclwrq99hq7bry7s53yr57l6588";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
||||||
|
buildInputs = [ glib gtk3 pcsclite lua5_2 curl readline ];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/L1L1/cardpeek;
|
||||||
|
description = "A tool to read the contents of ISO7816 smart cards";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
platforms = with platforms; linux ++ darwin;
|
||||||
|
maintainers = with maintainers; [ embr ];
|
||||||
|
};
|
||||||
|
}
|
@ -1130,6 +1130,8 @@ in
|
|||||||
|
|
||||||
catclock = callPackage ../applications/misc/catclock { };
|
catclock = callPackage ../applications/misc/catclock { };
|
||||||
|
|
||||||
|
cardpeek = callPackage ../applications/misc/cardpeek { };
|
||||||
|
|
||||||
cde = callPackage ../tools/package-management/cde { };
|
cde = callPackage ../tools/package-management/cde { };
|
||||||
|
|
||||||
cdemu-daemon = callPackage ../misc/emulators/cdemu/daemon.nix { };
|
cdemu-daemon = callPackage ../misc/emulators/cdemu/daemon.nix { };
|
||||||
|
Loading…
Reference in New Issue
Block a user