lol

spicy: unstable-2020-02-21 -> 0.6.2

+9 -65
+9 -9
pkgs/development/tools/spicy/default.nix
··· 1 - { lib, buildGoPackage, fetchFromGitHub }: 1 + { lib, buildGoModule, fetchFromGitHub }: 2 2 3 - buildGoPackage rec { 3 + buildGoModule rec { 4 4 pname = "spicy"; 5 - version = "unstable-2020-02-21"; 6 - 7 - goPackagePath = "github.com/trhodeos/spicy"; 5 + version = "0.6.2"; 8 6 9 7 src = fetchFromGitHub { 10 8 owner = "trhodeos"; 11 9 repo = "spicy"; 12 - rev = "47409fb73e0b20b323c46cc06a3858d0a252a817"; 13 - sha256 = "022r8klmr21vaz5qd72ndrzj7pyqpfxc3jljz7nzsa50fjf82c3a"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-TodMm4UbnLB+LiyfPVXT7bcVLbyBFbGoOYQSsz3IMfM="; 14 12 }; 15 13 16 - goDeps = ./deps.nix; 14 + vendorSha256 = "sha256-uy33vfsvyLCep1aN8qO0BMmpPylhzTLhosjjD5ghmHE="; 15 + 16 + ldflags = [ "-s" "-w" ]; 17 17 18 18 meta = with lib; { 19 19 description = "A Nintendo 64 segment assembler"; ··· 23 23 ''; 24 24 homepage = "https://github.com/trhodeos/spicy"; 25 25 license = licenses.mit; 26 - maintainers = [ maintainers._414owen]; 26 + maintainers = with maintainers; [ _414owen ]; 27 27 }; 28 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 - ]