svgbob: init at 2018-10-05

This commit is contained in:
Mario Rodas 2019-06-11 20:00:00 -05:00
parent e37d6efadc
commit 7f645e6f1c
No known key found for this signature in database
GPG key ID: 4C4BEFD7B18DC5E8
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "svgbob";
version = "unstable-2018-10-05";
src = fetchFromGitHub {
owner = "ivanceras";
repo = pname;
rev = "43fb0364e989d0e9a7656b148c947d47cc769622";
sha256 = "1imjj57dx1af3wrs214yzaa2qfk8ld00nj3nx4z450gw2xjjj1gw";
};
sourceRoot = "source/svgbob_cli";
cargoSha256 = "0mnq1s809f394x83gjv9zljr07c94k48zkrwxs6ibi19shgmrnnd";
# Test tries to build outdated examples
doCheck = false;
meta = with lib; {
description = "Convert your ascii diagram scribbles into happy little SVG";
homepage = "https://github.com/ivanceras/svgbob";
license = licenses.asl20;
maintainers = [ maintainers.marsam ];
platforms = platforms.all;
};
}

View file

@ -6023,6 +6023,8 @@ in
super-user-spark = haskellPackages.callPackage ../applications/misc/super_user_spark { };
svgbob = callPackage ../tools/graphics/svgbob { };
svgcleaner = callPackage ../tools/graphics/svgcleaner { };
ssdeep = callPackage ../tools/security/ssdeep { };