spicy: init at unstable-2020-02-21

+86
+28
pkgs/development/tools/spicy/default.nix
···
··· 1 + { lib, buildGoPackage, fetchFromGitHub }: 2 + 3 + buildGoPackage rec { 4 + pname = "spicy"; 5 + version = "unstable-2020-02-21"; 6 + 7 + goPackagePath = "github.com/trhodeos/spicy"; 8 + 9 + src = fetchFromGitHub { 10 + owner = "trhodeos"; 11 + repo = "spicy"; 12 + rev = "47409fb73e0b20b323c46cc06a3858d0a252a817"; 13 + sha256 = "022r8klmr21vaz5qd72ndrzj7pyqpfxc3jljz7nzsa50fjf82c3a"; 14 + }; 15 + 16 + goDeps = ./deps.nix; 17 + 18 + meta = with lib; { 19 + description = "A Nintendo 64 segment assembler"; 20 + longDescription = '' 21 + An open-source version of the Nintendo64 sdk's mild.exe. Assembles 22 + segments into an n64-compatible rom. 23 + ''; 24 + homepage = "https://github.com/trhodeos/spicy"; 25 + license = licenses.mit; 26 + maintainers = [ maintainers._414owen]; 27 + }; 28 + }
+56
pkgs/development/tools/spicy/deps.nix
···
··· 1 + [ 2 + { 3 + goPackagePath = "github.com/alecthomas/participle"; 4 + fetch = { 5 + type = "git"; 6 + url = "https://github.com/alecthomas/participle.git"; 7 + rev = "fed0e8fbb638b11091014aa838748210dc9ff576"; 8 + sha256 = "0yhhm42lis8ak9m6x6aai280xq0652vcq5v17pibbf74dalxyims"; 9 + }; 10 + } 11 + { 12 + goPackagePath = "github.com/sirupsen/logrus"; 13 + fetch = { 14 + type = "git"; 15 + url = "https://github.com/sirupsen/logrus.git"; 16 + rev = "f104497f2b2129ab888fd274891f3a278756bcde"; 17 + sha256 = "0gr2c7s3ffdaynzn1zplp79zz16qgqpnsq2z9zg79wxksq5mz5l1"; 18 + }; 19 + } 20 + { 21 + goPackagePath = "github.com/ogier/pflag"; 22 + fetch = { 23 + type = "git"; 24 + url = "https://github.com/ogier/pflag.git"; 25 + rev = "73e519546fc0bce0c395610afcf6aa4e5aec88eb"; 26 + sha256 = "114zpgl6l47gsz0sifpq62hi2i6k0ra9hi8wx7d39giablf9i4ii"; 27 + }; 28 + } 29 + { 30 + goPackagePath = "github.com/trhodeos/n64rom"; 31 + fetch = { 32 + type = "git"; 33 + url = "https://github.com/trhodeos/n64rom.git"; 34 + rev = "504dba7b4d4675bd3396c052d64016c5725c2f5e"; 35 + sha256 = "01hybm8nxh1lym0wc9sxrms3wyqhhs0dm1a2nwz6xc60lkjcp8kb"; 36 + }; 37 + } 38 + { 39 + goPackagePath = "github.com/trhodeos/ecoff"; 40 + fetch = { 41 + type = "git"; 42 + url = "https://github.com/trhodeos/ecoff.git"; 43 + rev = "e54570a0fac23c0fa7f605681345611f345ce0f6"; 44 + sha256 = "0pc0yj7hy43m00br0q0f1y5a3bc3a134imcyy2jvzim45g6g12kj"; 45 + }; 46 + } 47 + { 48 + goPackagePath = "golang.org/x/sys"; 49 + fetch = { 50 + type = "git"; 51 + url = "https://github.com/golang/sys"; 52 + rev = "9a76102bfb4322425a1228caa377974426e82c84"; 53 + sha256 = "07qn19yla2w604p3dc8h1c75xj2pxc4fajvg0mf0d4c72d5qiss4"; 54 + }; 55 + } 56 + ]
+2
pkgs/top-level/all-packages.nix
··· 7997 7998 spglib = callPackage ../development/libraries/spglib { }; 7999 8000 ssh-askpass-fullscreen = callPackage ../tools/networking/ssh-askpass-fullscreen { }; 8001 8002 sshguard = callPackage ../tools/security/sshguard {};
··· 7997 7998 spglib = callPackage ../development/libraries/spglib { }; 7999 8000 + spicy = callPackage ../development/tools/spicy { }; 8001 + 8002 ssh-askpass-fullscreen = callPackage ../tools/networking/ssh-askpass-fullscreen { }; 8003 8004 sshguard = callPackage ../tools/security/sshguard {};