Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 17bdaa27e175
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b6e4df572959
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Nov 2, 2020

  1. keystone: init at 0.9.2

    luc65r committed Nov 2, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    vszakats Viktor Szakats
    Copy the full SHA
    1e9d2d2 View commit details
  2. Merge pull request #102087 from luc65r/pkg/keystone

    keystone: init at 0.9.2
    mkg20001 authored Nov 2, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    vszakats Viktor Szakats
    Copy the full SHA
    b6e4df5 View commit details
Showing with 34 additions and 0 deletions.
  1. +32 −0 pkgs/development/libraries/keystone/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
32 changes: 32 additions & 0 deletions pkgs/development/libraries/keystone/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{ stdenv
, fetchFromGitHub
, pkg-config
, cmake
, python3
}:

stdenv.mkDerivation rec {
pname = "keystone";
version = "0.9.2";

src = fetchFromGitHub {
owner = "keystone-engine";
repo = pname;
rev = version;
sha256 = "020d1l1aqb82g36l8lyfn2j8c660mm6sh1nl4haiykwgdl9xnxfa";
};

nativeBuildInputs = [
pkg-config
cmake
python3
];

meta = with stdenv.lib; {
description = "Lightweight multi-platform, multi-architecture assembler framework";
homepage = "https://www.keystone-engine.org";
license = licenses.gpl2Only;
maintainers = with maintainers; [ luc65r ];
platforms = platforms.unix;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -1654,6 +1654,8 @@ in

capstone = callPackage ../development/libraries/capstone { };

keystone = callPackage ../development/libraries/keystone { };

casync = callPackage ../applications/networking/sync/casync {
sphinx = python3Packages.sphinx;
};