nixpkgs/pkgs/by-name/se/serpent/package.nix
Silvan Mosberger 4f0dadbf38 treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a0943687d2a5094a6d92f25a4b6e16a76b5b7
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00

49 lines
1.3 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
...
}:
stdenv.mkDerivation {
pname = "serpent";
# I can't find any version numbers, so we're just using the date
# of the last commit.
version = "2016-03-05";
src = fetchFromGitHub {
owner = "ethereum";
repo = "serpent";
rev = "51ee60857fe53c871fa916ef66fc1b4255bb9433";
sha256 = "1bns9wgn5i1ahj19qx7v1wwdy8ca3q3pigxwznm5nywsw7s7lqxs";
};
postPatch = ''
substituteInPlace Makefile --replace 'g++' '${stdenv.cc.targetPrefix}c++'
'';
installPhase = ''
mkdir -p $out/bin
mv serpent $out/bin
'';
meta = with lib; {
description = "Compiler for the Serpent language for Ethereum";
mainProgram = "serpent";
longDescription = ''
Serpent is one of the high-level programming languages used to
write Ethereum contracts. The language, as suggested by its name,
is designed to be very similar to Python; it is intended to be
maximally clean and simple, combining many of the efficiency
benefits of a low-level language with ease-of-use in programming
style, and at the same time adding special domain-specific
features for contract programming.
'';
homepage = "https://github.com/ethereum/wiki/wiki/Serpent";
license = with licenses; [ wtfpl ];
maintainers = [ ];
platforms = platforms.all;
};
}