mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
24 lines
464 B
Nix
24 lines
464 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "oed";
|
|
version = "6.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ibara";
|
|
repo = "oed";
|
|
rev = "oed-${version}";
|
|
hash = "sha256-Z8B1RIFve3UPj+9G/WJX0BNc2ynG/qtoGfoesarYGz8=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/ibara/oed";
|
|
description = "Portable ed editor from OpenBSD";
|
|
license = with licenses; [ bsd2 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|