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: d28f44c56c24
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b48110889e1b
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jun 4, 2019

  1. radamsa: 0.5 -> 0.6

    * new home (github -> gitlab)
    * "modernize" a bit
    * run tests!
    dtzWill committed Jun 4, 2019
    Copy the full SHA
    e3b8fcc View commit details

Commits on Jun 7, 2019

  1. Merge pull request #62696 from dtzWill/update/radamsa-0.6

    radamsa: 0.5 -> 0.6
    pSub authored Jun 7, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    b481108 View commit details
Showing with 26 additions and 10 deletions.
  1. +26 −10 pkgs/tools/security/radamsa/default.nix
36 changes: 26 additions & 10 deletions pkgs/tools/security/radamsa/default.nix
Original file line number Diff line number Diff line change
@@ -1,26 +1,42 @@
{ stdenv, fetchurl }:
{ stdenv, fetchurl, fetchFromGitLab, bash }:

let
# Fetch explicitly, otherwise build will try to do so
owl = fetchurl {
name = "ol.c.gz";
url = "https://gitlab.com/owl-lisp/owl/uploads/0d0730b500976348d1e66b4a1756cdc3/ol-0.1.19.c.gz";
sha256 = "0kdmzf60nbpvdn8j3l51i9lhcwfi4aw1zj4lhbp4adyg8n8pp4c6";
};
in
stdenv.mkDerivation rec {
name = "radamsa-${version}";
version = "0.5";
pname = "radamsa";
version = "0.6";

src = fetchurl {
url = "https://github.com/aoh/radamsa/releases/download/v${version}/${name}.tar.gz";
sha256 = "1d2chp45fbdb2v5zpsx6gh3bv8fhcjv0zijz10clcznadnm8c6p2";
src = fetchFromGitLab {
owner = "akihe";
repo = pname;
rev = "v${version}";
sha256 = "0mi1mwvfnlpblrbmp0rcyf5p74m771z6nrbsly6cajyn4mlpmbaq";
};

patchPhase = ''
substituteInPlace ./tests/bd.sh \
--replace "/bin/echo" echo
substituteInPlace ./Makefile \
--replace "PREFIX=/usr" "PREFIX=$out" \
--replace "BINDIR=/bin" "BINDIR="
ln -s ${owl} ol.c.gz
patchShebangs tests
'';

makeFlags = [ "PREFIX=${placeholder "out"}" "BINDIR=" ];

checkInputs = [ bash ];
doCheck = true;

meta = {
description = "A general purpose fuzzer";
longDescription = "Radamsa is a general purpose data fuzzer. It reads data from given sample files, or standard input if none are given, and outputs modified data. It is usually used to generate malformed data for testing programs.";
homepage = https://github.com/aoh/radamsa;
homepage = https://gitlab.com/akihe/radamsa;
maintainers = [ stdenv.lib.maintainers.markWot ];
platforms = stdenv.lib.platforms.all;
};