Skip to content

Commit

Permalink
crystal2nix: unstable-2018-07-31 -> 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
peterhoeg committed Dec 28, 2020
1 parent 61626d7 commit b8514a1
Show file tree
Hide file tree
Showing 5 changed files with 53 additions and 66 deletions.
42 changes: 0 additions & 42 deletions pkgs/development/compilers/crystal/crystal2nix.cr

This file was deleted.

22 changes: 0 additions & 22 deletions pkgs/development/compilers/crystal/crystal2nix.nix

This file was deleted.

36 changes: 36 additions & 0 deletions pkgs/development/compilers/crystal2nix/default.nix
@@ -0,0 +1,36 @@
{ lib, fetchFromGitHub, fetchgit, crystal, makeWrapper, nix-prefetch-git }:

crystal.buildCrystalPackage rec {
pname = "crystal2nix";
version = "0.1.0";

src = fetchFromGitHub {
owner = "peterhoeg";
repo = "crystal2nix";
rev = "v${version}";
sha256 = "sha256-K1ElG8VC/D0axmSRaufH3cE50xNQisAmFucDkV+5O0s=";
};

format = "shards";

shardsFile = ./shards.nix;

nativeBuildInputs = [ makeWrapper ];

postInstall = ''
wrapProgram $out/bin/crystal2nix \
--prefix PATH : ${lib.makeBinPath [ nix-prefetch-git ]}
'';

# temporarily off. We need the checks to execute the wrapped binary
doCheck = false;

# it requires an internet connection when run
doInstallCheck = false;

meta = with lib; {
description = "Utility to convert Crystal's shard.lock files to a Nix file";
license = licenses.mit;
maintainers = with maintainers; [ manveru peterhoeg ];
};
}
14 changes: 14 additions & 0 deletions pkgs/development/compilers/crystal2nix/shards.nix
@@ -0,0 +1,14 @@
{
json_mapping = {
owner = "crystal-lang";
repo = "json_mapping.cr";
rev = "v0.1.0";
sha256 = "1qq5vs2085x7cwmp96rrjns0yz9kiz1lycxynfbz5psxll6b8p55";
};
yaml_mapping = {
owner = "crystal-lang";
repo = "yaml_mapping.cr";
rev = "v0.1.0";
sha256 = "02spz1521g59ar6rp0znnr01di766kknbjxjnygs39yn0cmpzqc1";
};
}
5 changes: 3 additions & 2 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -9051,8 +9051,9 @@ in
crystal_0_33
crystal_0_34
crystal_0_35
crystal
crystal2nix;
crystal;

crystal2nix = callPackage ../development/compilers/crystal2nix { };

icr = callPackage ../development/tools/icr { };

Expand Down

0 comments on commit b8514a1

Please sign in to comment.